From 81d8fb2c5f7725e26404185b1c90989d76beaa03 Mon Sep 17 00:00:00 2001 From: deepshekhardas Date: Wed, 11 Mar 2026 06:27:29 +0530 Subject: [PATCH] fix: add missing curly braces on litellm compose file --- templates/compose/litellm.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/compose/litellm.yaml b/templates/compose/litellm.yaml index 9fd0a234b..799fa9b08 100644 --- a/templates/compose/litellm.yaml +++ b/templates/compose/litellm.yaml @@ -146,8 +146,8 @@ services: image: "postgres:16-alpine" environment: - POSTGRES_DB=${POSTGRES_DB:-litellm} - - POSTGRES_PASSWORD=$SERVICE_PASSWORD_POSTGRES - - POSTGRES_USER=$SERVICE_USER_POSTGRES + - POSTGRES_PASSWORD=${SERVICE_PASSWORD_POSTGRES} + - POSTGRES_USER=${SERVICE_USER_POSTGRES} volumes: - "pg-data:/var/lib/postgresql/data" healthcheck: