Merge pull request #4325 from Dokploy/fix/3909-healthcheck-interval

fix: reduce healthcheck frequency to lower memory pressure
This commit is contained in:
Mauricio Siu
2026-04-28 18:27:20 -06:00
committed by GitHub
+1 -1
View File
@@ -66,7 +66,7 @@ COPY --from=buildpacksio/pack:0.39.1 /usr/local/bin/pack /usr/local/bin/pack
EXPOSE 3000
HEALTHCHECK --interval=10s --timeout=3s --retries=10 \
HEALTHCHECK --interval=30s --timeout=5s --start-period=60s --retries=5 \
CMD curl -fs http://localhost:3000/api/trpc/settings.health || exit 1
CMD ["sh", "-c", "pnpm run wait-for-postgres && exec pnpm start"]