I would like to create a named volume for one of my containers.
This container will need a lot more storage than other containers I run, so I would like to store tha
Use the local volume driver:
docker volume create -d local -o type=none -o o=bind -o device=/host/path volname
(Taken from this github comment)