在我的Vagrantfile中,我有以下内容并且工作正常:
config.vm.synced_folder "~/Documents/WebApps", "/var/virtual/WebApps", id: "vagrant-root",
owner: "www-data",
group: "www-data",
mount_options: ["dmode=755,fmode=755"]
我读到了NFS以及它如何提高效果。
我只是在末尾添加type: nfs
来激活nfs的使用吗?
答案 0 :(得分:0)
以下对我有用。
最重要的是不要拥有group,owner和mount_options
config.vm.synced_folder "~/Documents/WebApps", "/var/virtual/WebApps", id: "vagrant-root",
type: "nfs"
当我尝试使用这些属性时,我会收到失败警告。
这answer有点帮助。