From 0fbe7ffb8ba6898480853cecb5702d14390efde3 Mon Sep 17 00:00:00 2001 From: Nicolas Civade Date: Thu, 13 Aug 2026 11:55:02 +0200 Subject: [PATCH] Drop Docker HEALTHCHECK (Swarm reschedule loop under Dokploy) --- Dockerfile | 2 -- 1 file changed, 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index c103ba9..7b85a0d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -20,7 +20,5 @@ COPY nginx.conf /etc/nginx/conf.d/default.conf COPY --from=build /app/dist /usr/share/nginx/html EXPOSE 80 -HEALTHCHECK --interval=30s --timeout=3s --start-period=5s --retries=3 \ - CMD wget -qO- http://localhost/ >/dev/null 2>&1 || exit 1 CMD ["nginx", "-g", "daemon off;"]