0.30
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