From 526298bea41038432bbabd3f0c9a2839af038916 Mon Sep 17 00:00:00 2001 From: Shrev Dev Date: Tue, 21 Oct 2025 11:01:19 -0500 Subject: [PATCH] fix: update dockerfile health check --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index b487c33..f236470 100644 --- a/Dockerfile +++ b/Dockerfile @@ -41,7 +41,7 @@ VOLUME ["/app/data"] ENV PUID=1001 PGID=1001 DATA_DIR=/app/data HEALTH_PORT=3000 EXPOSE 3000 -HEALTHCHECK --interval=30s --timeout=10s --start-period=5s --retries=3 \ - CMD wget --no-verbose --tries=1 --spider http://localhost:3000/health || exit 1 +HEALTHCHECK --interval=30s --timeout=10s --start-period=30s --retries=3 \ + CMD wget --no-verbose --tries=1 --spider http://127.0.0.1:3000/health || exit 1 ENTRYPOINT ["/entrypoint.sh"] CMD ["node", "dist/index.js"] \ No newline at end of file