From 10346d178f4a38fbf5528df8c487ab4abaa95f3d Mon Sep 17 00:00:00 2001 From: "Zachariah K. Sharma" Date: Sat, 6 Jun 2026 03:40:58 -0600 Subject: [PATCH] fix: increase postgres healthcheck start_period for first-boot init On first deploy postgres must initialize the data directory before it can accept connections. 10s start_period was too tight; bumped to 30s with 10 retries to give it enough runway on slower hosts. Co-Authored-By: Claude Sonnet 4.6 --- docker-compose.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 429902f..6671ea2 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -50,8 +50,8 @@ services: test: ["CMD-SHELL", "pg_isready -U hermes -d hermes"] interval: 10s timeout: 5s - retries: 5 - start_period: 10s + retries: 10 + start_period: 30s hermes-control-plane: build: *hermes-build