fix(compose): Correction du mapping de port pour exposer PostgreSQL sur 5432:5432.

This commit is contained in:
MLeveque
2026-03-12 12:10:41 +01:00
parent f2365c08e9
commit a8bcc7ae43

View File

@@ -3,7 +3,7 @@ services:
database: database:
image: postgres:${POSTGRES_VERSION:-16}-alpine image: postgres:${POSTGRES_VERSION:-16}-alpine
ports: ports:
- "5432" - "5432:5432"
environment: environment:
POSTGRES_DB: ${POSTGRES_DB:-app} POSTGRES_DB: ${POSTGRES_DB:-app}
# You should definitely change the password in production # You should definitely change the password in production