I am just starting with docker, I setup docker in my mac, ran below command to launch and basic python image
$docker run -p 5000:5000 in28min/hello-world-nodejs:0.0.1.RELEASE
command ran successfull, but while tried reach the url its throwing below error:
*Access to localhost was denied
You don't have authorization to view this page.
HTTP ERROR 403
-Reload
*
Using docker run -p 80:80 nginx
then hitting localhost in a browser seems to work OK for me.
I refered this https://github.com/docker/for-win/issues/3214