diff --git a/Dockerfile b/Dockerfile index c201e70..e2cd845 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,6 +17,7 @@ RUN \ && awk '/^P:nginx$/,/V:/' /tmp/APKINDEX | sed -n 2p | sed 's/^V://'); \ fi && \ apk add --no-cache \ + inotify-tools \ memcached \ nginx==${NGINX_VERSION} \ nginx-mod-http-brotli==${NGINX_VERSION} \ @@ -71,6 +72,9 @@ RUN \ printf "Linuxserver.io version: ${VERSION}\nBuild-date: ${BUILD_DATE}" > /build_version && \ rm -f /etc/nginx/conf.d/stream.conf +# copy local files +COPY root/ / + # ports and volumes EXPOSE 80 443 diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 7f8855b..5ec5853 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -17,6 +17,7 @@ RUN \ && awk '/^P:nginx$/,/V:/' /tmp/APKINDEX | sed -n 2p | sed 's/^V://'); \ fi && \ apk add --no-cache \ + inotify-tools \ memcached \ nginx==${NGINX_VERSION} \ nginx-mod-http-brotli==${NGINX_VERSION} \ @@ -71,6 +72,9 @@ RUN \ printf "Linuxserver.io version: ${VERSION}\nBuild-date: ${BUILD_DATE}" > /build_version && \ rm -f /etc/nginx/conf.d/stream.conf +# copy local files +COPY root/ / + # ports and volumes EXPOSE 80 443 diff --git a/readme-vars.yml b/readme-vars.yml index abf6514..b5d9a0d 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -87,6 +87,7 @@ init_diagram: | "nginx:latest" <- Base Images # changelog changelogs: + - {date: "13.07.25:", desc: "Fixed auto-reload functionality."} - {date: "16.06.25:", desc: "Rebase to Alpine 3.22 with PHP 8.4. Add [Auto Reload](https://github.com/linuxserver/docker-mods/tree/swag-auto-reload) functionality. Drop PHP bindings for mcrypt as it is no longer maintained."} - {date: "17.12.24:", desc: "Rebase to Alpine 3.21."} - {date: "31.05.24:", desc: "Rebase to Alpine 3.20. Existing users should update their nginx confs to avoid http2 deprecation warnings."} diff --git a/root/etc/s6-overlay/s6-rc.d/user/contents.d/svc-nginx-auto-reload b/root/etc/s6-overlay/s6-rc.d/user/contents.d/svc-nginx-auto-reload new file mode 100644 index 0000000..e69de29