I have installed docker toolbox on a windows machine, after running a container with the following command, I didn't see anything listening on my host machine's specified port (82).
docker run -ti -p 82:80 --name=container_alias someprovider/image:some_tag
I did attach to this contianer and did a simple check inside the container using:
curl localhost:80
it did return html source content, which means the container is running properly. What could be the reason of this unexpected behavior?