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
- Host: GitHub
- URL: https://github.com/rootfs/nfs-ganesha-docker
- Owner: rootfs
- Created: 2016-04-05T17:37:47.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2016-08-15T21:44:06.000Z (almost 9 years ago)
- Last Synced: 2024-12-29T21:23:28.112Z (5 months ago)
- Size: 1000 Bytes
- Stars: 10
- Watchers: 2
- Forks: 6
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
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