I\'ve found some interesting weirdness when trying to mount a docker image on windows.
I created a .sh script that does a mount of the project folder to
.sh
I've actually had the same issue. Depending on if you are using Git Bash this command works(using nginx as an example):
docker container run --name container-name -v `pwd -W` /html:/usr/share/nginx/html -p 8000:80 -d nginx
of course you can specify the port and directory as you desire.