0.0
No commit activity in last 3 years
No release in over 3 years
There's a lot of open issues
A vagrant plugin that brings support of Vagrant NFS Synced Folders to Windows with nfs4j-daemon under the hood.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Dependencies

Development

~> 1.17
~> 12.3
 Project Readme

vagrant-nfs4j

A Vagrant plugin that brings support of Vagrant NFS Synced Folders to Windows hosts with nfs4j-daemon under the hood.

This project is heavily inspired by vagrant-winnfsd.

Quickstart

  • Install the plugin
vagrant plugin install vagrant-nfs4j
  • Configure nfs synced folders in Vagrantfile
Vagrant.configure('2') do |config|
  config.vm.box = 'ubuntu/xenial64'

  config.vm.synced_folder 'C:\Users\Toilal', # Host Path 
                          '/user', # VM Path
                          id: 'user',
                          type: 'nfs',
                          mount_options: %w(uid=1000 gid=1000 mask=0777)
end

Configuration

See lib/vagrant-nfs4j/config/nfs4j.rb for options available in config.nfs4j object of Vagrantfile.