easypi/nfs

By easypi

Updated about 3 years ago

Image
0

79

nfs

Docker Build Images

NFS-Ganesha is an NFSv3,v4,v4.1 fileserver that runs in user mode on most UNIX/Linux systems.

:warning: ~90 seconds to sync.

# server
$ mkdir data
$ docker-compose up -d
$ echo hello > data/hello.txt

# client
$ sudo mkdir /mnt/data
$ sudo mount.nfs4 -v 127.0.0.1:/mnt/data
$ cat /mnt/data/hello.txt

Docker Pull Command

docker pull easypi/nfs