Skip to content

0.30

Compare
Choose a tag to compare
@gondor gondor released this 04 Oct 05:57
· 71 commits to master since this release

Initial support for creating named sub-folders on an NFS mount point during container creation. See Issue #72 for details. This is experimental.

Example:

Below will create a directory within the NFS mount of /someexport called data1. End result is a mount of /someexport/data1 mapped to /data within the container

docker volume create -d nfs --name data1 -o share=1.1.1.1:/someexport -o create=true
docker run -it --rm --volume-driver=nfs -v data1:/data ubuntu:trusty