When working with Docker-Toolbox on Win7 or even on Win10 (for those without Hyper-VM), you'll notice that docker
dislikes any volume mounts that have any Windows paths. What you have to understand is that volume mounts work
within the Linux VM that then get projected on to the Docker container. So this means the following:
- NO to
C:\\path\in\windows:/src
- YES to
/path/in/linux:/src
where the/path/in/linux
can be a Shared Drive toC:\\path\in\windows\
provided by VMWare.