Initial commit

This commit is contained in:
2026-06-21 12:18:19 +08:00
commit 7ec67ef918
564 changed files with 1985 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
FROM squidfunk/mkdocs-material AS builder
COPY . /docs
RUN mkdocs build
FROM nginx:alpine AS iptv-docs
COPY --from=builder /docs/site /usr/share/nginx/html
WORKDIR /usr/share/nginx/html
USER root
EXPOSE 80
CMD [ "nginx", "-g", "daemon off;" ]