Last active
February 24, 2016 17:52
-
-
Save ironcladlou/38f229462e107942a1ee to your computer and use it in GitHub Desktop.
Speedy NFS shares
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
config.vm.synced_folder ".", "/nfs/vagrant", type: "nfs" | |
config.bindfs.bind_folder "/nfs/vagrant", "/vagrant", :owner => "1000", :group => "1000", :perms => 'u=u:g=g:o=o', :'create-as-user' => true | |
config.vm.synced_folder "#{ENV['GOPATH']}/src", "/nfs/src", type: "nfs", mount_options: [ | |
'vers=3', | |
'rw', | |
'tcp', | |
'fsc', | |
'intr', | |
'rsize=1048576', | |
'wsize=1048576' | |
] | |
config.bindfs.bind_folder "/nfs/src", "/home/vagrant/go/src", :owner => "1000", :group => "1000", :perms => "u=u:g=g:o=o", :'create-as-user' => true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment