| Hallo, I was wondering why it was not working and I have found the following. C:\ path doesn't work with a Linux Docker Host because a docker run -v option is waiting a path on the host as the first field. See definition in the doc Because my host is a linux system (boot2docker), it expects a Linux path. This is working for me when I configured my virtual box shared drive to mount `c:\` on the host.
docker run -it --rm -v /c/users:/pathInContainer/ ubuntu bash
Is there a way to get the Windows path processed through an utility such as cygpath (or something similar) before execution ? Thanks |