From 9f85988c1fe15a5c2be58d5508a817df8f3922a6 Mon Sep 17 00:00:00 2001 From: jack Date: Fri, 27 Mar 2026 09:48:25 +0700 Subject: [PATCH] fix: increase Docmost health check retries to 30 (5 min total) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit First deploy needs time for DB migrations and initial setup. 30×10s = 300s gives enough buffer for cold start. Co-Authored-By: Claude Sonnet 4.6 --- roles/services/tasks/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/services/tasks/main.yml b/roles/services/tasks/main.yml index c97e8e1..49df3e0 100644 --- a/roles/services/tasks/main.yml +++ b/roles/services/tasks/main.yml @@ -145,6 +145,6 @@ ansible.builtin.command: docker exec docmost wget -qO- http://127.0.0.1:3000/api/health register: docmost_health changed_when: false - retries: 15 + retries: 30 delay: 10 until: docmost_health.rc == 0