From 5b11259dd7befd32a322612156dc6c9a7be74ced Mon Sep 17 00:00:00 2001 From: thomas Date: Mon, 25 Sep 2023 20:15:31 -0400 Subject: [PATCH] fix: rename ipv6.sh -> lighttpd-ipv6.sh --- Dockerfile | 3 ++- ipv6.sh => lighttpd-ipv6.sh | 0 2 files changed, 2 insertions(+), 1 deletion(-) rename ipv6.sh => lighttpd-ipv6.sh (100%) diff --git a/Dockerfile b/Dockerfile index 9c872f5..bf63e62 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,6 +17,7 @@ ENV UID 1000 ENV PORT 8080 ENV SUBFOLDER "/_" ENV INIT_ASSETS 1 +ENV IPV6_DISABLE 0 RUN addgroup -S lighttpd -g ${GID} && adduser -D -S -u ${UID} lighttpd lighttpd && \ apk add -U --no-cache lighttpd @@ -24,7 +25,7 @@ RUN addgroup -S lighttpd -g ${GID} && adduser -D -S -u ${UID} lighttpd lighttpd WORKDIR /www COPY lighttpd.conf /lighttpd.conf -COPY ipv6.sh /etc/lighttpd/ipv6.sh +COPY lighttpd-ipv6.sh /etc/lighttpd/ipv6.sh COPY entrypoint.sh /entrypoint.sh COPY --from=build-stage --chown=${UID}:${GID} /app/dist /www/ COPY --from=build-stage --chown=${UID}:${GID} /app/dist/assets /www/default-assets diff --git a/ipv6.sh b/lighttpd-ipv6.sh similarity index 100% rename from ipv6.sh rename to lighttpd-ipv6.sh