fix: drop HEALTHCHECK + bind nginx ipv4+ipv6

This commit is contained in:
PM
2026-05-01 20:23:47 +00:00
parent ccc1664914
commit 16efe43e97
2 changed files with 1 additions and 1 deletions
-1
View File
@@ -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
+1
View File
@@ -1,5 +1,6 @@
server {
listen 80 default_server;
listen [::]:80 default_server;
server_name _;
root /usr/share/nginx/html;
index index.html;