From 16efe43e976af7d09899961fd8d0d6ecdd9dc7fc Mon Sep 17 00:00:00 2001 From: PM Date: Fri, 1 May 2026 20:23:47 +0000 Subject: [PATCH] fix: drop HEALTHCHECK + bind nginx ipv4+ipv6 --- Dockerfile | 1 - nginx.conf | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 7f89394..94291a8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,4 +3,3 @@ COPY nginx.conf /etc/nginx/conf.d/default.conf COPY index.html /usr/share/nginx/html/index.html COPY designs /usr/share/nginx/html/designs EXPOSE 80 -HEALTHCHECK --interval=30s --timeout=3s CMD wget -qO- http://localhost/ >/dev/null || exit 1 diff --git a/nginx.conf b/nginx.conf index f35f172..a2635b3 100644 --- a/nginx.conf +++ b/nginx.conf @@ -1,5 +1,6 @@ server { listen 80 default_server; + listen [::]:80 default_server; server_name _; root /usr/share/nginx/html; index index.html;