Version-locked the Vagrant box.

This commit is contained in:
Peter Deltchev 2015-11-24 12:29:19 -08:00
parent 77730e9fd9
commit ac0405a894

3
Vagrantfile vendored
View file

@ -4,6 +4,7 @@ Vagrant.configure("2") do |config|
config.hostmanager.manage_host = true config.hostmanager.manage_host = true
config.vm.box = 'laravel/homestead' config.vm.box = 'laravel/homestead'
config.vm.box_version = '0.3.0'
config.vm.provider "virtualbox" do |v| config.vm.provider "virtualbox" do |v|
v.cpus = 4 v.cpus = 4
v.memory = 2048 v.memory = 2048
@ -21,6 +22,6 @@ Vagrant.configure("2") do |config|
config.vm.network "forwarded_port", guest: 3306, host: 33060 config.vm.network "forwarded_port", guest: 3306, host: 33060
config.vm.synced_folder "../pony.fm.files", "/vagrant-files" config.vm.synced_folder "../pony.fm.files", "/vagrant-files", type: "nfs"
config.bindfs.bind_folder "/vagrant", "/vagrant" config.bindfs.bind_folder "/vagrant", "/vagrant"
end end