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;