From 0db8d9a39b7884834c8eb405de212f5fb70ba6a1 Mon Sep 17 00:00:00 2001 From: Cesar Flores Date: Sat, 7 Mar 2026 05:28:50 +0700 Subject: [PATCH] fix: Simplify healthcheck command in compose.yml by removing database flag --- postgres/compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/postgres/compose.yml b/postgres/compose.yml index c8626e6..4a45665 100644 --- a/postgres/compose.yml +++ b/postgres/compose.yml @@ -13,7 +13,7 @@ services: volumes: - postgres_data:/var/lib/postgresql/data healthcheck: - test: ["CMD-SHELL", "pg_isready -U ${POSTGRES_USER:-postgres} -d ${POSTGRES_DB:-postgres}"] + test: ["CMD-SHELL", "pg_isready -U ${POSTGRES_USER:-postgres}"] interval: 10s timeout: 5s retries: 5