diff options
author | Bruno Wagner <bwgpro@gmail.com> | 2015-01-19 14:03:37 -0200 |
---|---|---|
committer | Bruno Wagner <bwgpro@gmail.com> | 2015-01-19 14:03:37 -0200 |
commit | 4930914ad7895d2e1ef62370e7278b3bd94fd4ee (patch) | |
tree | 5604100dc4cd3edc5a9c5517927ac90074068dc4 | |
parent | 231de022c5b9a165e01007f32de40f33ebb35481 (diff) |
Port must be int for the binding to work
-rw-r--r-- | Vagrantfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Vagrantfile b/Vagrantfile index d0e8ad26..c2bf477b 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -48,7 +48,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| end - config.vm.network :forwarded_port, guest: "3333", guest_ip: "127.0.0.1", host: "3333" + config.vm.network :forwarded_port, guest: 3333, host: 3333 config.vm.provider "virtualbox" do |v| v.memory = 1024 end |