Merge pull request #23 from tobiasd/20170801-vagrant

Vagrant > 1.5 needs an additional parameter
This commit is contained in:
Michael Vogel 2017-08-01 22:20:49 +02:00 committed by GitHub
commit a5a186f911
1 changed files with 1 additions and 1 deletions

2
Vagrantfile vendored
View File

@ -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.