fix(service): disable healthcheck logging for Gotenberg (#6005)

This commit is contained in:
Khiet Tam Nguyen
2025-06-18 20:55:50 +10:00
committed by GitHub
parent f354ec8a6d
commit dccb2fcbb5

View File

@@ -12,13 +12,15 @@ services:
# NOTE: requires the --api-enable-basic-auth option in "command" # NOTE: requires the --api-enable-basic-auth option in "command"
- GOTENBERG_API_BASIC_AUTH_USERNAME=${SERVICE_USER_GOTENBERG} - GOTENBERG_API_BASIC_AUTH_USERNAME=${SERVICE_USER_GOTENBERG}
- GOTENBERG_API_BASIC_AUTH_PASSWORD=${SERVICE_PASSWORD_GOTENBERG} - GOTENBERG_API_BASIC_AUTH_PASSWORD=${SERVICE_PASSWORD_GOTENBERG}
command: [ command:
"gotenberg", - gotenberg
# See the full list of options at https://gotenberg.dev/docs/configuration # See the full list of options at https://gotenberg.dev/docs/configuration
"--api-enable-basic-auth"
#"--api-timeout=60s", # Examples:
#"--chromium-auto-start" # - --api-timeout=60s
] # - --chromium-auto-start
- --api-enable-basic-auth
- --api-disable-health-check-logging
healthcheck: healthcheck:
test: ["CMD", "curl", "-f", "http://127.0.0.1:3000/health"] test: ["CMD", "curl", "-f", "http://127.0.0.1:3000/health"]
interval: 5s interval: 5s