Skip to content

Instantly share code, notes, and snippets.

@otiai10
Last active March 14, 2018 06:16
Show Gist options
  • Save otiai10/0260c3b22b683767c04b99b94135a070 to your computer and use it in GitHub Desktop.
Save otiai10/0260c3b22b683767c04b99b94135a070 to your computer and use it in GitHub Desktop.
docker build . \
  -t otiai10/nfs-server

docker run \
  -it --rm --privileged \
  -p 111:111/tcp -p 111:111/udp \
  -p 2049:2049/tcp -p 2049:2049/udp \
  -v /mnt:/mnt \
  otiai10/nfs-server
mkdir foobar
chmod 777 foobar
mount -t nfs 172.31.29.92:/ foobar
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment