There is a run command with mounting a folder to a Docker container.
docker run --volume my_folder:/mnt/mqm my-image-name
We see that the bind folder name my_folder
is passed without its path.
It is definitely not the same as ./my_folder
path, which is relative to the current folder.
I can't find any mentions about this case in Docker documentation.
Please, help me to clarify the case when "bare folder name is passed as the bind folder".
Where my_folder
is located on the host?
It is enough to give an answer for Windows 10, but it would be great to have answers for general cases in all OS (Win, Linux, Mac)