Skip to content

Latest commit

 

History

History
25 lines (16 loc) · 561 Bytes

README.md

File metadata and controls

25 lines (16 loc) · 561 Bytes

What it is?

An experiment to run NFS Ganesha VFS module in a Container

Prerequisites

Make sure rpcbind service is started, otherwise VFS module failed to unregister error will occur:

On RHEL based Linux:

 # yum install rpcbind -y
 # systemctl start rpcbind

Build and run the Container

  # docker build -t ganesha .
  # # exports /home/exports using the following command
  # docker run -ti --net=host --privileged  -v /home/exports/:/exports ganesha
  # # test mount on another terminal
  # mount localhost:/exports /mnt