Skip to content

Latest commit

 

History

History
13 lines (10 loc) · 336 Bytes

README.md

File metadata and controls

13 lines (10 loc) · 336 Bytes

NFS server for Docker

Docker nfs-server based on CentOS. To use, run the image as follows:

$ docker run -d --net=bridge --privileged --name nfs-server mnagy/nfs-server /exports/foo /exports/bar

You can then mount NFS shares:

# mount <CONTAINER_IP>:/exports/foo /mnt/foo
# mount <CONTAINER_IP>:/exports/bar /mnt/bar