From fe9508362174b30b45be9e372c9441539c3b9b95 Mon Sep 17 00:00:00 2001 From: peusterm Date: Thu, 18 Aug 2016 16:03:32 +0200 Subject: [PATCH] Added REST, cAdvisor and PushGateway ports to Vagrant file --- Vagrantfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Vagrantfile b/Vagrantfile index 30fd519..3ed9a3f 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -58,7 +58,10 @@ Vagrant.configure(2) do |config| # Create a forwarded port mapping which allows access to a specific port # within the machine from a port on the host machine. In the example below, # accessing "localhost:8080" will access port 80 on the guest machine. - config.vm.network "forwarded_port", guest: 5000, host: 5000 + config.vm.network "forwarded_port", guest: 5000, host: 5000 # dummy gatekeeper + config.vm.network "forwarded_port", guest: 5001, host: 5001 # REST API + config.vm.network "forwarded_port", guest: 8080, host: 8080 # cAdvisor + config.vm.network "forwarded_port", guest: 9091, host: 9091 # push gateway # Create a private network, which allows host-only access to the machine # using a specific IP. -- 2.17.1