updated to match new services

This commit is contained in:
Trent Bartlem
2015-01-04 23:59:18 +10:00
parent d74ff5fc91
commit 9d5c39caeb
2 changed files with 16 additions and 1 deletions

7
vagrant/Vagrantfile vendored
View File

@@ -18,7 +18,12 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
# Create a forwarded port mapping which allows access to a specific port
# within the machine from a port on the host machine.
config.vm.network :forwarded_port, guest: 3306, host: 3306
config.vm.network :forwarded_port, guest: 9090, host: 9090
config.vm.network :forwarded_port, guest: 8000, host: 8000
config.vm.synced_folder ".", "/vagrant", disabled: true
config.vm.synced_folder "../", "/vagrant"
config.vm.provision :shell, :path => "bootstrap.sh"
end
end