Добавлены новые домены + файл включающий в себя все списки
All checks were successful
Production Build / publish (push) Successful in 18s

This commit is contained in:
2026-04-16 17:13:34 +03:00
parent 666ae5117f
commit 5b78da1edc
19 changed files with 84 additions and 5 deletions

View File

@ -2,8 +2,17 @@ FROM fholzer/nginx-brotli:latest
RUN rm -rf /usr/share/nginx/html/*
COPY ./ipsets /usr/share/nginx/html/ipsets
COPY ./lists /usr/share/nginx/html/lists
COPY ./scripts /usr/share/nginx/html/scripts
COPY nginx.conf /etc/nginx/conf.d/default.conf
RUN find /usr/share/nginx/html/lists -name "*.txt" -exec sed -i 's/#.*//g; /^$/d' {} +
RUN dos2unix /usr/share/nginx/html/scripts/*.sh && \
chmod +x /usr/share/nginx/html/scripts/*.sh
EXPOSE 80
ENTRYPOINT ["/usr/share/nginx/html/scripts/entrypoint.sh"]
CMD ["-g", "daemon off;"]