From 9627f80b7aa07eb43d801d132ce9d1a2cf73b053 Mon Sep 17 00:00:00 2001 From: casjay Date: Fri, 7 Oct 2022 18:47:35 -0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=97=83=EF=B8=8F=20Committing=20everything?= =?UTF-8?q?=20that=20changed=20=F0=9F=97=83=EF=B8=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index a01f9e7..42a5c6a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,7 +12,7 @@ RUN apk -U upgrade && \ COPY ./bin/entrypoint-lighttpd.sh /usr/local/bin/entrypoint-lighttpd.sh FROM lighttpd -ARG BUILD_DATE="$(date +'%Y-%m-%d %H:%M')" +ARG BUILD_DATE="$(date +'%Y-%m-%d %H:%M')" LABEL \ org.label-schema.name="lighttpd" \ @@ -26,7 +26,7 @@ LABEL \ org.label-schema.vcs-type="Git" \ org.label-schema.schema-version="1.0" \ org.label-schema.vendor="CasjaysDev" \ - maintainer="CasjaysDev " + maintainer="CasjaysDev " LABEL maintainer="CasjaysDev " \ @@ -39,6 +39,6 @@ EXPOSE 80 WORKDIR /htdocs VOLUME [ "/htdocs", "/config" ] -HEALTHCHECK CMD ["/usr/local/bin/entrypoint-lighttpd.sh", "healthcheck"] +HEALTHCHECK --interval=15s --timeout=3s CMD ["/usr/local/bin/entrypoint-lighttpd.sh", "healthcheck"] ENTRYPOINT ["/usr/local/bin/entrypoint-lighttpd.sh"]