diff --git a/compose.coolify.yml b/compose.coolify.yml index 5843694..d7e3b2f 100644 --- a/compose.coolify.yml +++ b/compose.coolify.yml @@ -116,7 +116,7 @@ services: - 'traefik.http.middlewares.agenthub-dashboard-headers.headers.customrequestheaders.X-Forwarded-Proto=https' - 'traefik.http.routers.agenthub-dashboard.middlewares=agenthub-dashboard-headers' healthcheck: - test: ['CMD', 'wget', '--no-verbose', '--tries=1', '--spider', 'http://localhost/healthz'] + test: ['CMD', 'wget', '-qO', '/dev/null', 'http://localhost/healthz'] interval: 30s timeout: 5s retries: 3 diff --git a/web/Dockerfile b/web/Dockerfile index 1dccb07..e063cd0 100644 --- a/web/Dockerfile +++ b/web/Dockerfile @@ -83,6 +83,6 @@ EOF EXPOSE 80 HEALTHCHECK --interval=30s --timeout=5s --retries=3 --start-period=5s \ - CMD wget --no-verbose --tries=1 --spider http://localhost/healthz || exit 1 + CMD wget -qO /dev/null http://localhost/healthz || exit 1 CMD ["nginx", "-g", "daemon off;"]