From bd863cdf33d12aaef27284dccecfe6efac889f68 Mon Sep 17 00:00:00 2001 From: Claude Date: Thu, 26 Mar 2026 11:33:57 +0000 Subject: [PATCH] fix: hardcode pg_isready args to avoid podman-compose $$ escaping issue https://claude.ai/code/session_01FKCW3FDjNFj6jve4niMFXH --- infra/docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infra/docker-compose.yml b/infra/docker-compose.yml index 9f60585..16aa99a 100644 --- a/infra/docker-compose.yml +++ b/infra/docker-compose.yml @@ -74,7 +74,7 @@ services: # SQL files here run once on first init (ignored if data volume already exists). - ./postgres-init:/docker-entrypoint-initdb.d:ro healthcheck: - test: ["CMD-SHELL", "pg_isready -U $$POSTGRES_USER -d $$POSTGRES_DB"] + test: ["CMD-SHELL", "pg_isready -U hiy_admin -d hiy"] interval: 5s timeout: 5s retries: 10