Skip to content

Instantly share code, notes, and snippets.

@fofr
Last active August 29, 2015 14:01
Show Gist options
  • Save fofr/3c4a064825d13fc19270 to your computer and use it in GitHub Desktop.
Save fofr/3c4a064825d13fc19270 to your computer and use it in GitHub Desktop.
Enable NFS in Vagrant
# Static IP for NFS and DNS
config.vm.network :private_network, :ip => "10.1.1.250"
config.vm.provider :virtualbox do |vm, override|
override.vm.synced_folder "~/some/directory", "/some/directory/on/vm", :nfs => true
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment