I'm trying to change my VagrantFile so that it uses an NFS mount instead of the default VirtualBox shared folders.
I get this error message:
vm:
* Shared folders that have NFS enabled do not support owner/group
attributes. Host path: .
This is my VagrantFile:
VAGRANTFILE_API_VERSION = "2"
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.box = "ktbartholomew/lamp"
config.vm.network "private_network", type: "dhcp"
config.vm.synced_folder ".", "/vagrant", type: "nfs"
end
I can't see any owner or group getting set.
Please help! Thanks