如何使用同一网络中的本地主机访问其他Docker容器中一个容器的端口

时间:2019-04-09 03:44:18

标签: docker docker-compose dockerfile

我可以使用端口映射通过本地主机访问本地计算机中的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

使用本地主机从本地主机访问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

我希望使用localhost在Ubuntu docker容器中进行端口访问,但是该端口拒绝连接。

1 个答案:

答案 0 :(得分:0)

容器本身就像机器(计算机)一样工作。因此,如果您输入一个容器并调用“ localhost”,则localhost指向该容器。容器的整个想法是“包含”其环境。使用容器时,请尝试不再使用localhost。

使用容器名称或服务名称(在docker-compose网络中)。