【发布时间】:2022-01-25 21:53:28
【问题描述】:
我使用 docker-compose 运行我的 Golang API 和 PostgreSQL。
我的日志有错误connection refused:
db_1 |
db_1 | PostgreSQL Database directory appears to contain a database; Skipping initialization
db_1 |
api_1 | Unable to connect to database: dial tcp 0.0.0.0:5432: connect: connection refusedartpaper_api_1 exited with code 1
db_1 | 2021-12-26 15:18:35.152 UTC [1] LOG: starting PostgreSQL 14.1 on x86_64-pc-linux-musl, compiled by gcc (Alpine 10.3.1_git20211027) 10.3.1 20211027, 64-bit
db_1 | 2021-12-26 15:18:35.152 UTC [1] LOG: listening on IPv4 address "0.0.0.0", port 5432
db_1 | 2021-12-26 15:18:35.152 UTC [1] LOG: listening on IPv6 address "::", port 5432
db_1 | 2021-12-26 15:18:35.216 UTC [1] LOG: listening on Unix socket "/var/run/postgresql/.s.PGSQL.5432"
db_1 | 2021-12-26 15:18:35.329 UTC [22] LOG: database system was shut down at 2021-12-26 15:05:11 UTC
db_1 | 2021-12-26 15:18:35.515 UTC [1] LOG: database system is ready to accept connections
我的配置:
config := pgx.ConnConfig{
Host: "0.0.0.0",
Port: 5432,
Database: "artpaper",
User: "admin",
Password: "admin1",
}
我认为 API 的 docker-compose.yml 或 Dockerfile 有错误,因为在正确的端口上 docker ps:
0.0.0.0:5432->5432/tcp artpaper_db_1
API 的 Dockerfile:
FROM golang:1.17.5-alpine3.15
WORKDIR /artpaper
COPY ./ ./
RUN go mod download // download dependencies
RUN go build ./cmd/main/main.go // compile code to one binary file
EXPOSE 8080
CMD [ "./main" ] // run binary file
docker-compose.yml:
version: "3.3"
services:
db:
image: postgres:14.1-alpine3.15
volumes:
- ./data/db:/var/lib/postgresql/data
environment:
- POSTGRES_DB=artpaper
- POSTGRES_USER=admin
- POSTGRES_PASSWORD=admin1
ports:
- 5432:5432
api:
build:
context: .
dockerfile: Dockerfile
ports:
- "8080:8080"
depends_on:
- db
API 配置中的密码和用户,如 docker-compose.yml
带有 api 的容器的主机名是 0.0.0.0:5432
【问题讨论】:
-
您使用什么主机名进行连接?
-
来自带有 api 的容器
0.0.0.0:5432 -
在您的应用程序日志中,您可以看到您的应用程序在数据库完全准备好之前尝试连接。 Connection Refused: Accessing Postgres container from app container with docker-compose 对这个特定的 Go/PostgreSQL 设置进行了长时间的讨论; Docker Compose wait for container X before starting Y 讨论更一般的情况。
标签: docker docker-compose dockerfile