Skip to content

Latest commit

 

History

History
24 lines (17 loc) · 631 Bytes

README.md

File metadata and controls

24 lines (17 loc) · 631 Bytes

nfs

Docker Build Images

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

⚠️ ~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