use nfs 4.2 synced folder

This commit is contained in:
Rui Lopes 2022-12-03 10:17:07 +00:00
parent 6a8845b67e
commit 91def415e4
1 changed files with 1 additions and 1 deletions

2
Vagrantfile vendored
View File

@ -26,7 +26,7 @@ Vagrant.configure(2) do |config|
config.vm.network 'private_network', ip: nexus_ip
config.vm.provider :libvirt do |lv, config|
lv.memory = 3*1024
config.vm.synced_folder '.', '/vagrant', type: 'nfs'
config.vm.synced_folder '.', '/vagrant', type: 'nfs', nfs_version: '4.2', nfs_udp: false
end
config.vm.provider :virtualbox do |vb, config|
vb.memory = 3*1024