An open API service indexing awesome lists of open source software.

https://github.com/rootfs/nfs-ganesha-docker

containerized NFS Ganesha daemon
https://github.com/rootfs/nfs-ganesha-docker

Last synced: 4 months ago
JSON representation

containerized NFS Ganesha daemon

Awesome Lists containing this project

README

        

# 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:

```bash
# yum install rpcbind -y
# systemctl start rpcbind
```

# Build and run the Container

```bash
# 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