From 3544e1a271970f2bfb0180f4d12df286104fd6c2 Mon Sep 17 00:00:00 2001 From: Cesar Flores Date: Sun, 8 Mar 2026 16:29:42 +0700 Subject: [PATCH] fix: correct POSTGRES_PORT usage --- postgres/compose.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/postgres/compose.yml b/postgres/compose.yml index e935759..34fde3a 100644 --- a/postgres/compose.yml +++ b/postgres/compose.yml @@ -7,7 +7,8 @@ services: POSTGRES_USER: ${POSTGRES_USER:-postgres} POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:-postgres} POSTGRES_DB: ${POSTGRES_DB:-postgres} - POSTGRES_PORT: ${POSTGRES_PORT:-5432} + ports: + - "${POSTGRES_PORT:-5432}:5432" volumes: - postgres_data:/var/lib/postgresql healthcheck: