From ac88dcb8e1738ea6f7ebf8a63ba5dcf3cb573631 Mon Sep 17 00:00:00 2001 From: Viren070 Date: Tue, 4 Mar 2025 21:50:22 +0000 Subject: [PATCH] fix: enforce ZIPLINE_POSTGRES_PASSWORD environment variable in compose.yaml --- compose.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compose.yaml b/compose.yaml index b5101ff..1310099 100644 --- a/compose.yaml +++ b/compose.yaml @@ -1171,7 +1171,7 @@ services: - zipline-db:/var/lib/postgresql/data environment: POSTGRES_USER: ${ZIPLINE_POSTGRES_USER:-zipline} - POSTGRES_PASSWORD: ${ZIPLINE_POSTGRES_PASSWORD:-zipline} + POSTGRES_PASSWORD: ${ZIPLINE_POSTGRES_PASSWORD?} POSTGRES_DB: ${ZIPLINE_POSTGRES_DB:-zipline} healthcheck: test: ["CMD-SHELL", "pg_isready -U zipline"]