Home  >  Q&A  >  body text

docker绑定了nginx端口 外部访问不到

我是docker初学者,在window环境下使用docker
根据《第一本Docker书》学习,学习到docker端口映射这里
使用了docker port 查看了端口映射是映射到0.0.0.0:32769这个端口

如果是curl localhost:32769
正常的情况反应是:有我自己打的一些英文出现的。

仅有的幸福仅有的幸福2756 days ago700

reply all(2)I'll reply

  • 巴扎黑

    巴扎黑2017-04-26 09:03:50

    -p 80使用不对,应该是-p 8080:80。将本地端口与容器端口进行映射。然后本地访问localhost:8080即可。如果让docker自动分配端口应使用大写P,-PNo need to add the port number afterwards.

    reply
    0
  • 習慣沉默

    習慣沉默2017-04-26 09:03:50

    There is a problem with your port. It is only bound to the port of the container, which should be -p 80:80

    reply
    0
  • Cancelreply