fix(deploy): use pg_isready without -U to avoid interpolation issue

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Arnaud
2026-07-01 13:53:00 +02:00
parent 963e73a84a
commit b1ccae5368
+1 -1
View File
@@ -9,7 +9,7 @@ services:
volumes:
- postgres_data:/var/lib/postgresql/data
healthcheck:
test: ["CMD-SHELL", "pg_isready -U ${POSTGRES_USER}"]
test: ["CMD-SHELL", "pg_isready -h localhost"]
interval: 10s
timeout: 5s
retries: 10