I'm starting using Docker 17.09 hyper-v and my machine runs Windows 10 Pro. So far I managed to create the image and run the website I'm working on. My problem is mouting a volume. This is how I start the container:
docker run -p 81:80 -v C:/Users/Andre Luiz/Documents/Projects/dockerTest/src:/var/www/html php5.6
I also tried this:
docker run -p 81:80 -v //c/users/andre luiz/documents/projects/dockertest/src:/var/www/html php5.6
Trying to find the answer I found that I should enable shared drivers (Settings -> Shared Drivers and enable the driver). I did so and so far it doesn't work and I keep getting this message: invalid reference format: repository name must be lowercase.
Would you know what I'm missing or Docker simply doesn't mount volumes on windows?
Thanks for any help