So you mount a volume to a container like so: -v volume:/path/to/target-directory.
I want to do: -v volume/source-directory:/path/to/target-directory. Rather than creating more volumes, I’d rather have one with directories in it that I mount to various places on the container file system.
Is this possible? Google shows no examples AFAICT.
-v /etc/localtime:/etc/localtime #mounts a single file in the container
-v volume_example:/mnt/media #creates a new volume
-v /srv/media/tv:/tv #mounts an existing directory