...
You can actually use docker volume create to create a new volume, then either use docker run -v <new volume> which will mount it to /<new volume> within the container or, docker run -v <new volume>:<container path> which will mount it to <container path> within the container.
Info |
---|
Notice the "//c/" in the host path. This is mandatory on Windows and indicates the drive letter. |
Testing the shared folder/file
...