Pony.fm/Vagrantfile

10 lines
309 B
Ruby
Raw Normal View History

2015-04-12 03:22:15 +02:00
Vagrant.configure("2") do |config|
config.vm.box = 'laravel/homestead'
config.vm.network :private_network, ip: "192.168.33.11"
config.vm.synced_folder ".", "/vagrant", type: "nfs"
config.vm.provision "shell", path: "vagrant/install.sh"
config.vm.synced_folder "../pony.fm.files", "/vagrant-files"
end