From ee68b4b3f5b69d81fb6a953848ab94893e3d7d64 Mon Sep 17 00:00:00 2001 From: raydeveloppeur-admin Date: Sun, 2 Aug 2026 10:55:56 +0200 Subject: [PATCH] =?UTF-8?q?Manage=20environment=20variables=20:=20Manage?= =?UTF-8?q?=20environment=20variables=20:=20PostgreSQL=20host=20ports=20ar?= =?UTF-8?q?e=20now=20parameterized=20while=20keeping=20the=20internal=2054?= =?UTF-8?q?32=20defaults.=20docker=E2=80=91compose=20uses=20**${POSTGRES?= =?UTF-8?q?=5FPROD=5FPORT}**=20and=20**${POSTGRES=5FTEST=5FPORT}**=20for?= =?UTF-8?q?=20host=20mappings,=20with=20container=20ports=20and=20Flyway?= =?UTF-8?q?=20URLs=20left=20on=205432?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docker-compose.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 6eafe4f..dd2bdc4 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -7,7 +7,7 @@ services: POSTGRES_PASSWORD: ${POSTGRES_PASSWORD} POSTGRES_DB: ${POSTGRES_DB} ports: - - "5435:5432" + - "${POSTGRES_PROD_PORT}:5432" volumes: - pgdata_prod:/var/lib/postgresql @@ -19,7 +19,7 @@ services: POSTGRES_PASSWORD: ${TEST_POSTGRES_PASSWORD} POSTGRES_DB: ${TEST_POSTGRES_DB} ports: - - "5434:5432" + - "${POSTGRES_TEST_PORT}:5432" volumes: - pgdata_test:/var/lib/postgresql