From 330345c1ac31d746e49d3d9e75a45a92c5c3bdc8 Mon Sep 17 00:00:00 2001 From: Dorian Date: Fri, 13 Feb 2026 17:54:46 +0000 Subject: [PATCH] Hardcode postgres healthcheck user to avoid variable substitution issues Co-authored-by: Cursor --- docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index ed3eea3..6229ba7 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -118,7 +118,7 @@ services: networks: - indeedhub-network healthcheck: - test: ["CMD-SHELL", "pg_isready -U ${POSTGRES_USER}"] + test: ["CMD-SHELL", "pg_isready -U indeedhub"] interval: 10s timeout: 5s retries: 5