我可以使用带有端口映射的localhost访问本地计算机中的docker容器端口,但是在其他容器中无法以类似的方式访问它。
我的docker-compose文件创建了一个80:80端口映射的Ubuntu和Nginx容器。当我尝试从Ubuntu访问Nginx URL时,端口拒绝连接。我可以使用容器名称访问端口,但不能使用localhost访问。
.
├── Dockerfile
└── docker-compose.yml
docker-compose.yml文件内容
version: '2'
services:
web:
image: nginx
ports:
- "80:80"
links:
- userver
depends_on:
- userver
userver:
build:
context: .
dockerfile: Dockerfile
Dockerfile内容
FROM ubuntu
RUN apt-get update && apt-get install -y net-tools curl
CMD tail -f /dev/null
docker-practice $ docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
c3f06dc519d8 nginx "nginx -g 'daemon of…" 4 hours ago Up 10 minutes 0.0.0.0:80->80/tcp docker-practice_web_1
40324fa76612 docker-practice_userver "/bin/sh -c 'tail -f…" 4 hours ago Up 10 minutes 80/tcp docker-practice_userver_1
使用localhost从本地主机访问Nginx URL
docker-practice $ curl http://localhost -I
HTTP/1.1 200 OK
Server: nginx/1.15.10
Date: Tue, 09 Apr 2019 03:35:46 GMT
Content-Type: text/html
Content-Length: 612
Last-Modified: Tue, 26 Mar 2019 14:04:38 GMT
Connection: keep-alive
ETag: "5c9a3176-264"
Accept-Ranges: bytes
使用localhost从Ubuntu容器访问Nginx URL
root@40324fa76612:/# curl http://localhost -I
curl: (7) Failed to connect to localhost port 80: Connection refused
使用容器名称从Ubuntu容器访问Nginx URL
root@40324fa76612:/# curl http://docker-practice_web_1 -I
HTTP/1.1 200 OK
Server: nginx/1.15.10
Date: Tue, 09 Apr 2019 03:42:13 GMT
Content-Type: text/html
Content-Length: 612
Last-Modified: Tue, 26 Mar 2019 14:04:38 GMT
Connection: keep-alive
ETag: "5c9a3176-264"
Accept-Ranges: bytes
我希望Ubuntu docker容器中的端口访问与localhost,但端口拒绝连接。
容器本身就像一台机器(计算机)。因此,如果您输入容器并调用“localhost”,则localhost将指向该容器。容器的整个想法是“包含”其环境。使用容器时,请尝试不再使用localhost。
使用容器名称或服务名称(在docker-compose网络中时)。