[ci skip] Fix FORWARDED_PORT

This commit is contained in:
Jose Diaz-Gonzalez
2015-05-12 14:27:49 -04:00
parent a54f9ebc7c
commit fc466e2c05

2
Vagrantfile vendored
View File

@@ -39,7 +39,7 @@ Vagrant::configure("2") do |config|
end
config.vm.define "dokku-deb", autostart: false do |vm|
vm.vm.network :forwarded_port, guest: 80, host: ENV['FORWARDED_PORT']
vm.vm.network :forwarded_port, guest: 80, host: FORWARDED_PORT
vm.vm.hostname = "#{DOKKU_DOMAIN}"
vm.vm.network :private_network, ip: DOKKU_IP
vm.vm.provision :shell, :inline => "cd /root/dokku && make install-from-deb"