From 0903ed84b60c98a0fa5b0886d7b7dbea1a69ffa8 Mon Sep 17 00:00:00 2001 From: Tam Nguyen Date: Wed, 15 Jan 2025 10:23:07 +1100 Subject: [PATCH] fix(template): gotenberg healthcheck, use /health instead of /version --- templates/compose/gotenberg.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/compose/gotenberg.yaml b/templates/compose/gotenberg.yaml index 13014c5b9..83ec2acfa 100644 --- a/templates/compose/gotenberg.yaml +++ b/templates/compose/gotenberg.yaml @@ -20,7 +20,7 @@ services: #"--chromium-auto-start" ] healthcheck: - test: ["CMD", "curl", "-f", "http://127.0.0.1:3000/version"] + test: ["CMD", "curl", "-f", "http://127.0.0.1:3000/health"] interval: 5s timeout: 20s retries: 10