From 8aea4acc54bc9160f5c080cb86614dba3666608c Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Tue, 1 Aug 2017 17:04:03 +0200 Subject: [PATCH] Vagrant > 1.5 needs an additional parameter --- Vagrantfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Vagrantfile b/Vagrantfile index 9b4db068..8bb55897 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -24,7 +24,7 @@ Vagrant.configure(2) do |config| config.vm.network :private_network, ip: server_ip # Share a folder between host and guest - config.vm.synced_folder "./", "/vagrant/", owner: "www-data", group: "vagrant" + config.vm.synced_folder ".", "/vagrant", id: "vagrant-root", owner: "www-data", group: "vagrant" # Provider-specific configuration so you can fine-tune various # backing providers for Vagrant. These expose provider-specific options.