privileged flag in order to allow mount NFS filesystem, export it as docker volume (also for use by other containers) and overcome security modules limitations (e.g. 'selinux', 'appArmor'..etc).docker run -d --name mynfs --cap-add=SYS_ADMIN erezhorev/dockerized_nfs_serverdocker run -d --name mynfs --cap-add=SYS_ADMIN --security-opt apparmor:unconfined erezhorev/dockerized_nfs_server.Activate the server by running the script start.sh.
For your convenience, it can also be sourced (e.g. source start.sh) which will set the environment variable MYNFSIP with the server's ip.
Behind stage it will automatically pull the docker image from Docker hub and start the nfs server container named 'mynfs' with the default export point: /exports.
(Docker internal run command: docker run -d --name mynfs --privileged erezhorev/dockerized_nfs_server)
Optional arguments are allowed and transformed to export points with the default export (/exports) as their root base path.
Legal arguments form:
start.sh share1 /share2 /some/share3 some/more/share4.
Arguments are allowed to include preceding Slash-'/' but its just the same as without it, each given argument transforms to an active export point under /exports.
example: share1 /share2 -> /exports/share1 /exports/share2
Run: stop.sh (or docker stop mynfs ; docker rm mynfs).
Note it also removes the server container with all its data!
To stop and preserve data, just run docker stop mynfs instead.
Run status.sh as it includes the following info:
export points, server's stdout and running processes.
Run: mount -v -t nfs -o proto=tcp,port=2049 [nfs server ip]:/exports/share1 /mnt/target_dir
Run: docker exec -ti mynfs bash
And then, for example, you may run netstat -tl to see if nfs is there.
Run: lsmod | grep nfsd to see if the kernel module is there.
The nfs service of the docker container relies on the kernel of the native host to provide the kernel-level nfs support. If your nfs service is not up correctly, please make sure your native kernel does support nfs service.
rw,sync,insecure,no_subtree_check,no_root_squashContent type
Image
Digest
Size
52.7 MB
Last updated
over 9 years ago
docker pull cryptcoinjunkey/dockerized_nfs_server