postgresDB Port 5433

This commit is contained in:
Andreas Knuth 2026-01-22 09:50:24 -06:00
parent 9b827b2170
commit 6b54e222a0
1 changed files with 2 additions and 2 deletions

View File

@ -10,7 +10,7 @@ services:
- postgres_data:/var/lib/postgresql/data
- ./init.sql:/docker-entrypoint-initdb.d/init.sql
ports:
- "5432:5432"
- "5433:5432"
healthcheck:
test: ["CMD-SHELL", "pg_isready -U quoteuser"]
interval: 10s
@ -25,7 +25,7 @@ services:
environment:
NODE_ENV: production
DB_HOST: postgres
DB_PORT: 5432
DB_PORT: 5433
DB_USER: quoteuser
DB_PASSWORD: quotepass123
DB_NAME: quotedb