简体   繁体   English

无法使用 docker-compose 通过 Sequelize 连接到 Postgres 数据库

[英]Cannot connect to Postgres database with Sequelize using docker-compose

I can't manage to authenticate my postgres database.我无法验证我的 postgres 数据库。 I am using docker-compose.我正在使用 docker-compose。 Please find below the relevant files and logs.请在下面找到相关文件和日志。 Is something about my connection string wrong?我的连接字符串有问题吗?

docker-compose.yml docker-compose.yml

version: "3.8"
services:
  app:
    build:
      context: ./
      target: dev
    volumes:
      - .:/src
    command: npm run start:dev
    ports:
      - "3000:3000"
    depends_on:
      - postgres
    environment:
      DATABASE_URL: postgres://votetracker@postgres/codes
      POSTGRES_PASSWORD: password
      NODE_ENV: development
      DEBUG: nodejs-docker-express:*
  postgres:
    image: postgres
    restart: always
    ports:
      - "5432:5432"
    environment:
      POSTGRES_USER: user
      POSTGRES_PASSWORD: pass
      POSTGRES_DB: codes

db.js数据库.js

const { Sequelize } = require("sequelize");
const sequelize = new Sequelize("postgres://user:pass@database:5432/codes");

const authenticate = async () => {
  try {
    await sequelize.authenticate();
    console.log("Connection has been established successfully.");
  } catch (error) {
    console.error("Unable to connect to the database:", error);
  }
};
module.exports = { authenticate };

When running docker-compose up , this is the output:运行docker-compose up ,这是 output:

postgres_1  | The files belonging to this database system will be owned by user "postgres".
postgres_1  | This user must also own the server process.
...
postgres_1  | Success. You can now start the database server using:
postgres_1  |
postgres_1  |     pg_ctl -D /var/lib/postgresql/data -l logfile start
...
postgres_1  | server started
postgres_1  | CREATE DATABASE
...
postgres_1  | PostgreSQL init process complete; ready for start up.
...
postgres_1  | 2022-01-23 17:32:03.824 UTC [1] LOG:  database system is ready to accept connections
...
app_1       | Your app is running on port 3000
app_1       | Unable to connect to the database: ConnectionError [SequelizeConnectionError]: getaddrinfo EAI_AGAIN database

You're almost there.您快到了。 When you need to connect to another container on a docker-compose bridge network, you use the service name as the hostname.当您需要连接到 docker-compose 桥接网络上的另一个容器时,您可以使用服务名称作为主机名。

So instead of所以而不是

const sequelize = new Sequelize("postgres://user:pass@database:5432/codes");

you need你需要

const sequelize = new Sequelize("postgres://user:pass@postgres:5432/codes");

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM