1、在容器中访问容器中的服务有响应,在宿主机访问容器服务无响应,但是宿主机可以访问到容器nginx服务的欢迎界面,截图如下:
在容器中访问容器中的服务有响应:
curl 172.17.0.2:8080
在宿主机访问容器中的服务无响应:
curl 172.17.0.2:8080
不加端口直接访问,会得到nginx服务的欢迎界面代码:
curl 172.17.0.2
2、由于容器里可以访问该服务,所以服务是启动了的;在宿主机可以访问容器中的nginx欢迎界面,说明宿主机可以访问容器中80端口的服务,问题到底出在什么地方呢?
Each image defines an interface that can be provided to the outside world. The Nginx image only provides ports 80 and 443 by default. Naturally, you cannot access the 8080 port in the container.
You only need to set the
docker create
或者docker run
创建容器时携带--expose
parameter to open the specified port.--expose Expose a port or a range of ports
You need to expose the specified port to the host
docker run -p 8080:80 your image name