From 297de9bb0dd5c60ae07c8bb85a4bd933a51709c2 Mon Sep 17 00:00:00 2001 From: Matt Basta Date: Tue, 10 Mar 2026 20:07:51 -0400 Subject: [PATCH] Fix for missing curly braces --- 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: