Vagrant: Add the type to the synced folder in the Vagrantfile

This commit is contained in:
Tobias Diekershoff 2021-10-01 09:42:08 +02:00
parent e4dc2b8e1c
commit 4960d0f438

2
Vagrantfile vendored
View file

@ -24,7 +24,7 @@ Vagrant.configure(2) do |config|
# Share a folder between host and guest
# config.vm.synced_folder ".", "/vagrant", id: "vagrant-root", owner: "www-data", group: "vagrant"
config.vm.synced_folder ".", "/vagrant", id: "vagrant-root", owner: "www-data", group: "www-data"
config.vm.synced_folder ".", "/vagrant", id: "vagrant-root", owner: "www-data", group: "www-data", type: "virtualbox"
# Provider-specific configuration so you can fine-tune various
# backing providers for Vagrant. These expose provider-specific options.