From 028c41b011ec85ce865dea12b9ddd24b4b989f2f Mon Sep 17 00:00:00 2001 From: christiankolbow Date: Sat, 31 Aug 2024 09:32:28 +0200 Subject: [PATCH] fix: postgres healthcheck --- templates/compose/keycloak-with-postgres.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/compose/keycloak-with-postgres.yaml b/templates/compose/keycloak-with-postgres.yaml index 2d5bb8f2b..c1198d0ac 100644 --- a/templates/compose/keycloak-with-postgres.yaml +++ b/templates/compose/keycloak-with-postgres.yaml @@ -55,7 +55,7 @@ services: healthcheck: test: - CMD-SHELL - - pg_isready -U $${SERVICE_USER_DATABASE} -d $${POSTGRESQL_DATABASE} + - pg_isready -U $${POSTGRES_USER} -d $${POSTGRES_DB} interval: 5s timeout: 20s retries: 10