From a8bcc7ae43b340d5e8200f1fc3ab4ca195ed5ec9 Mon Sep 17 00:00:00 2001 From: MLeveque Date: Thu, 12 Mar 2026 12:10:41 +0100 Subject: [PATCH] fix(compose): Correction du mapping de port pour exposer PostgreSQL sur `5432:5432`. --- compose.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compose.yaml b/compose.yaml index 0675e5c..346b51c 100644 --- a/compose.yaml +++ b/compose.yaml @@ -3,7 +3,7 @@ services: database: image: postgres:${POSTGRES_VERSION:-16}-alpine ports: - - "5432" + - "5432:5432" environment: POSTGRES_DB: ${POSTGRES_DB:-app} # You should definitely change the password in production -- 2.49.1