Hello,
I'm trying to mount a directory from the host machine into the docker container.
I've tried to following command to start the container:
docker run -i -t -v /c/Users/Administrator/Desktop/test/:/c/test --name=test1 windowsservercore:latest cmd.exe
The directory C:\Users\Administrator\Desktop\test is existing and there are files in it.
But after the start of the container the dir C:\test does not appear inside the container.
I'm using /C/ because I've seen it here: https://docs.docker.com/userguide/dockervolumes/
docker run -v /c/Users/<path>:/<container path ... (Windows)
Is this a bug or do I need change something on the folder permissions?