1
0

Перевод на zensical и актуализация

This commit is contained in:
2026-07-11 15:09:32 +08:00
parent 7ec67ef918
commit 82a98edf00
18 changed files with 1771 additions and 874 deletions
+16 -3
View File
@@ -1,8 +1,21 @@
FROM squidfunk/mkdocs-material AS builder
FROM zensical/zensical:latest AS builder
ENV PYTHONPATH=/docs
COPY . /docs
RUN mkdocs build
RUN zensical build --clean
FROM nginx:alpine AS boilerplate-docs
# LABEL org.opencontainers.image.revision="c76960ef08be04f397b72702eca4166c7b783176"
# LABEL org.opencontainers.image.description="Documentation for our services and products"
# LABEL org.opencontainers.image.url="https://example.com"
# LABEL org.opencontainers.image.vendor="Boilerplate"
# LABEL org.opencontainers.image.documentation="https://example.com"
# LABEL org.opencontainers.image.version="v0.0.46"
# LABEL org.opencontainers.image.created="2026-06-21T18:47:29.228Z"
# LABEL org.opencontainers.image.licenses="MIT"
# LABEL org.opencontainers.image.title="BoilerplateDocs"
# LABEL org.opencontainers.image.source=""
FROM nginx:alpine AS iptv-docs
COPY --from=builder /docs/site /usr/share/nginx/html
WORKDIR /usr/share/nginx/html
USER root