I\'m trying to setup a developer environment through a Docker container on my Windows 7 computer.
I\'ve installed Docker toolbox for Windows.
I have an
I think for Docker volume options, double quotes are not required:
docker run --name=php5.6_container --rm -v //c/sites:/var/www/html -p 80:80 -p 8080:8080 php5.6
Check if it is working. I am not sure.
See example of volume mapping at Manage data in containers.