summaryrefslogtreecommitdiff
path: root/Vagrantfile
diff options
context:
space:
mode:
authorBruno Wagner <bwgpro@gmail.com>2015-01-19 14:03:37 -0200
committerBruno Wagner <bwgpro@gmail.com>2015-01-19 14:03:37 -0200
commit4930914ad7895d2e1ef62370e7278b3bd94fd4ee (patch)
tree5604100dc4cd3edc5a9c5517927ac90074068dc4 /Vagrantfile
parent231de022c5b9a165e01007f32de40f33ebb35481 (diff)
Port must be int for the binding to work
Diffstat (limited to 'Vagrantfile')
-rw-r--r--Vagrantfile2
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