如何将Docker Web应用程序容器连接到Docker PostgreSQL容器?

时间:2016-03-27 03:35:40

标签: postgresql go docker docker-compose

我正在练习制作一个与PostgreSQL数据库交互的Golang网络应用程序,每个数据库都在自己的容器上运行。

我使用docker-compose up

运行容器

但我似乎未能正确设置postgres容器。

为简便起见,指向Dockerfile和其他设置文件的链接为on this gist(如果您需要,请告诉我们。)

version: '2'
services:
  web_app:
    build: dockerfiles/web_app
    ports:
      - "9000:9000"
    volumes:
      - .:/go/src/gitlab.com/repo/web_app
    # links might be replaced by depends_on.
    # links:
    #   - db
    depends_on:
      - db
    # tty and stdin_open cause docker-compose to disconnect from docker-machine after 60sec.
    # A fix is on the way.
    # tty: true
    # stdin_open: true
  db:
    build: dockerfiles/db
    volumes:
      - data:/var/lib/postgresql/data
volumes:
  data: {}

docker-compose up运行正常。但是当应用程序尝试使用以下命令打开数据库连接时

var pgConf string = "user=web_app dbname=web_app sslmode=verify-full password=password"

db, err := sql.Open("postgres", pgConf)

我从docker compose收到以下错误:

Error creating new user:  dial tcp [::1]:5432: getsockopt: connection refused

如何让两个容器互相交流?

提前谢谢。

1 个答案:

答案 0 :(得分:8)

使用docker-compose v2时,不需要在服务之间创建链接。 Docker 1.9和1.10允许您通过名称连接到同一(自定义)网络上的其他容器。

您应该能够使用服务的名称容器的名称作为主机名进行连接。鉴于容器的名称是由docker-compose生成的,这使用起来并不方便,因此,docker-compose还会为每个容器添加一个带有服务名称的别名。 / p>

举一个非常简单的例子。为方便起见,我使用了Nginx容器,但同样适用于您的情况;

version: '2'
services:
  web_app:
    image: nginx
  db:
    image: nginx

首先启动项目(假设;

$ docker-compose --project-name=test up -d
Creating network "test_default" with the default driver
Creating test_db_1
Creating test_web_app_1

然后从test_web_app_1容器中ping“db”服务:

$ docker exec -it test_web_app_1 ping -c 2 db
PING db (172.18.0.2): 56 data bytes
64 bytes from 172.18.0.2: icmp_seq=0 ttl=64 time=0.108 ms
64 bytes from 172.18.0.2: icmp_seq=1 ttl=64 time=0.243 ms
--- db ping statistics ---
2 packets transmitted, 2 packets received, 0% packet loss
round-trip min/avg/max/stddev = 0.108/0.175/0.243/0.068 ms

如果检查test_db_1容器,可以看到docker-compose自动为test_db_1容器添加了“db”别名;

$ docker inspect test_db_1

给出:(只是NetworkSettings.Networks部分)

"Networks": {
    "test_default": {
        "IPAMConfig": null,
        "Links": null,
        "Aliases": [
            "db",
            "002b1875e61f"
        ],
        "NetworkID": "0f9e2cddeca79e5a46c08294ed61dee273828607f99014f6410bda887626be70",
        "EndpointID": "a941ab95586a8fdafc5075f9c5c44d745f974e5790ef6048b9e90115a22fb31f",
        "Gateway": "172.18.0.1",
        "IPAddress": "172.18.0.2",
        "IPPrefixLen": 16,
        "IPv6Gateway": "",
        "GlobalIPv6Address": "",
        "GlobalIPv6PrefixLen": 0,
        "MacAddress": "02:42:ac:12:00:02"
    }
}