From 0af371ad22ae680f0baed7eae362f1ae1a1becb3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=BCger?= Date: Sun, 26 Oct 2025 11:13:35 +0100 Subject: [PATCH] fix: postgres ports --- core/compose.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core/compose.yaml b/core/compose.yaml index 9f5b7fb..e13c12e 100644 --- a/core/compose.yaml +++ b/core/compose.yaml @@ -11,6 +11,8 @@ services: # Performance tuning POSTGRES_MAX_CONNECTIONS: ${CORE_POSTGRES_MAX_CONNECTIONS:-100} POSTGRES_SHARED_BUFFERS: ${CORE_POSTGRES_SHARED_BUFFERS:-256MB} + ports: + - 5432:5432 volumes: - postgres_data:/var/lib/postgresql/data - ./postgres/init:/docker-entrypoint-initdb.d:ro