Skip to content

Commit 31193a9

Browse files
committed
Fixed postgres healthchecks
1 parent 9f5257b commit 31193a9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

templates/compose/langfuse.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ services:
4242
healthcheck:
4343
test:
4444
- CMD-SHELL
45-
- "pg_isready -h localhost -U ${POSTGRES_USER} -d ${POSTGRES_DB}"
45+
- "pg_isready -h localhost -U $${POSTGRES_USER} -d $${POSTGRES_DB}"
4646
interval: 5s
4747
timeout: 5s
4848
retries: 10

templates/compose/litellm.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ services:
158158
healthcheck:
159159
test:
160160
- CMD-SHELL
161-
- "pg_isready -h localhost -U ${POSTGRES_USER} -d ${POSTGRES_DB}"
161+
- "pg_isready -h localhost -U $${POSTGRES_USER} -d $${POSTGRES_DB}"
162162
interval: 5s
163163
timeout: 5s
164164
retries: 3

0 commit comments

Comments
 (0)