更新 Gitea、HedgeDoc、Homepage、MinIO、Uptime Kuma 的 Docker Compose 配置,添加 Traefik 代理和环境变量,新增 HedgeDoc 的 .gitignore 文件

This commit is contained in:
2026-03-21 20:06:27 +08:00
parent 19a8f64203
commit 6e18226e0c
7 changed files with 75 additions and 10 deletions
+22
View File
@@ -0,0 +1,22 @@
services:
traefik:
image: traefik:v3.6
container_name: traefik
restart: unless-stopped
command:
- --api.insecure=true
- --providers.docker=true
- --entrypoints.web.address=:80
- --api.dashboard=true
- --log.level=INFO
ports:
- "80:80"
- "8080:8080"
volumes:
- /var/run/docker.sock:/var/run/docker.sock:ro
networks:
- homelab_net
networks:
homelab_net:
external: true