I'm using docker toolbox in my Win 7 desktop, I'm creating a container from nginx using the following command:
docker container run -p 8082:80 -v //c/Users/TestDocker/:/usr/share/nginx/ -d --rm nginx
The content in the container reflects what it is in my host folder:
In the container:
But the actual page display is this:
Obviously the same locally:
Nginx configuration file points to the same location as the bind is:
Any cloud on what am I doing wrong?
This is not worthy of an answer but I don't have the reputation to comment:
Your docker command maps
8082:80
but you're using port8083
in the browser. Is there a chance you're interacting with the wrong container?