From 435aa4bf9afbd7867f4cc17d026b4b29da5a043d Mon Sep 17 00:00:00 2001 From: Alejandro Martinez Date: Tue, 7 Apr 2026 16:05:30 +0200 Subject: [PATCH] fix: disable Docker healthcheck, let Coolify manage it wget healthcheck consistently fails even though server is listening. Disable it and let Coolify handle health monitoring. Co-Authored-By: Claude Opus 4.6 (1M context) --- Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 71cb010..635f117 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,6 +11,5 @@ RUN mkdir -p /data && chown node:node /data USER node ENV NODE_ENV=production NODE_PATH=/app/node_modules EXPOSE 3000 -HEALTHCHECK --interval=10s --timeout=5s --retries=10 --start-period=60s \ - CMD wget -q --spider http://localhost:3000/api/health || exit 1 +HEALTHCHECK NONE ENTRYPOINT ["node", ".output/server/index.mjs"]