From 1d388036d5770025ba7d8271e9637a060749e36d Mon Sep 17 00:00:00 2001 From: Khiet Tam Nguyen <86177399+nktnet1@users.noreply.github.com> Date: Fri, 20 Jun 2025 14:40:15 +1000 Subject: [PATCH] fix(blueprint): disable healthcheck logging for gotenberg (#186) --- blueprints/gotenberg/docker-compose.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/blueprints/gotenberg/docker-compose.yml b/blueprints/gotenberg/docker-compose.yml index 02bbacb7..a496b058 100644 --- a/blueprints/gotenberg/docker-compose.yml +++ b/blueprints/gotenberg/docker-compose.yml @@ -6,13 +6,13 @@ services: # make sure to also change the credentials in Dokploy environment GOTENBERG_API_BASIC_AUTH_USERNAME: ${GOTENBERG_API_BASIC_AUTH_USERNAME} GOTENBERG_API_BASIC_AUTH_PASSWORD: ${GOTENBERG_API_BASIC_AUTH_PASSWORD} - command: [ - "gotenberg", + command: + - gotenberg # See the full list of options at https://gotenberg.dev/docs/configuration - + # Examples: - "--api-enable-basic-auth" - #"--api-timeout=60s", - #"--chromium-auto-start" - ] - restart: unless-stopped \ No newline at end of file + # - --api-timeout=60s + # - --chromium-auto-start + - --api-enable-basic-auth + - --api-disable-health-check-logging + restart: unless-stopped