新增文档

This commit is contained in:
renjianbo
2026-01-05 10:31:24 +08:00
parent 56d100d628
commit 64672e303f
25 changed files with 4032 additions and 3478 deletions

View File

@@ -1,22 +1,22 @@
version: '3.8'
services:
mkdocs:
image: squidfunk/mkdocs-material:latest
container_name: mkdocs
restart: unless-stopped
ports:
- "8000:8000" # HTTP 端口映射:主机 8000 -> 容器 8000
volumes:
- .:/docs # 挂载整个项目目录到 /docs
working_dir: /docs
command: serve --dev-addr=0.0.0.0:8000
environment:
- MKDOCS_SERVE_ADDR=0.0.0.0:8000
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8000/"]
interval: 30s
timeout: 10s
retries: 3
start_period: 10s
version: '3.8'
services:
mkdocs:
image: squidfunk/mkdocs-material:latest
container_name: mkdocs
restart: unless-stopped
ports:
- "8000:8000" # HTTP 端口映射:主机 8000 -> 容器 8000
volumes:
- .:/docs # 挂载整个项目目录到 /docs
working_dir: /docs
command: serve --dev-addr=0.0.0.0:8000
environment:
- MKDOCS_SERVE_ADDR=0.0.0.0:8000
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8000/"]
interval: 30s
timeout: 10s
retries: 3
start_period: 10s