From ac0405a894dc6939feb2c934da2ef9df1b76d568 Mon Sep 17 00:00:00 2001 From: Peter Deltchev Date: Tue, 24 Nov 2015 12:29:19 -0800 Subject: [PATCH] Version-locked the Vagrant box. --- Vagrantfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Vagrantfile b/Vagrantfile index 0da7af64..95fd21ad 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -4,6 +4,7 @@ Vagrant.configure("2") do |config| config.hostmanager.manage_host = true config.vm.box = 'laravel/homestead' + config.vm.box_version = '0.3.0' config.vm.provider "virtualbox" do |v| v.cpus = 4 v.memory = 2048 @@ -21,6 +22,6 @@ Vagrant.configure("2") do |config| 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" end