Skip to content

Instantly share code, notes, and snippets.

View grahamnscp's full-sized avatar

Graham Hares grahamnscp

View GitHub Profile
@grahamnscp
grahamnscp / docker-nfs-volumes.md
Created May 23, 2018 10:27 — forked from ruanbekker/docker-nfs-volumes.md
NFS Volumes with Docker Swarm

Create NFS Volumes:

Creating the NFS Volume:

$ docker volume create --driver local \
  --opt type=nfs \
  --opt o=addr=192.168.1.115,uid=1000,gid=1000,rw \
  --opt device=:/mnt/volumes/mysql-test \
  mysql-test-1