Unverified Commit 94dec4ba authored by James Rasell's avatar James Rasell Committed by GitHub
Browse files

Merge pull request #11338 from hashicorp/f-expose-nomad-consul-vagrant-linux

vagrantfile: expose Nomad and Consul APIs to local machine.
Showing with 4 additions and 0 deletions
+4 -0
......@@ -17,6 +17,10 @@ Vagrant.configure(2) do |config|
vmCfg = configureLinuxProvisioners(vmCfg)
# Expose Nomad and Consul ports for ease.
vmCfg.vm.network :forwarded_port, guest: 4646, host: 4646, auto_correct: true, host_ip: "127.0.0.1"
vmCfg.vm.network :forwarded_port, guest: 8500, host: 8500, auto_correct: true, host_ip: "127.0.0.1"
vmCfg.vm.synced_folder '.',
'/opt/gopath/src/github.com/hashicorp/nomad'
......
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