Unverified Commit 15f9fea2 authored by Tim Gross's avatar Tim Gross Committed by GitHub
Browse files

dev: expose Consul port 8500 in linux-ui Vagrantfile (#6292)

parent c9f76564
Showing with 6 additions and 5 deletions
+6 -5
......@@ -44,12 +44,13 @@ Vagrant.configure(2) do |config|
privileged: false,
path: './scripts/vagrant-linux-unpriv-bootstrap.sh'
# Expose the nomad api and ui to the host
vmCfg.vm.network "forwarded_port", guest: 4646, host: 4646, auto_correct: true
# Expose the nomad api and ui to the host
vmCfg.vm.network :forwarded_port, guest: 4646, host: 4646, auto_correct: true
vmCfg.vm.network :forwarded_port, guest: 8500, host: 8500, auto_correct: true
# Expose Ember ports to the host (one for the site, one for livereload)
vmCfg.vm.network :forwarded_port, guest: 4201, host: 4201, auto_correct: true
vmCfg.vm.network :forwarded_port, guest: 49153, host: 49153, auto_correct: true
# Expose Ember ports to the host (one for the site, one for livereload)
vmCfg.vm.network :forwarded_port, guest: 4201, host: 4201, auto_correct: true
vmCfg.vm.network :forwarded_port, guest: 49153, host: 49153, auto_correct: true
end
config.vm.define "freebsd", autostart: false, primary: false do |vmCfg|
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment