新增服务配置,更新 Gitea、HedgeDoc、Homepage、Uptime Kuma 的 Docker Compose 配置,添加 Traefik 路由和 TLS 支持,新增自动发现设置

This commit is contained in:
2026-04-04 17:58:11 +08:00
parent 6e18226e0c
commit 90d7db8782
6 changed files with 114 additions and 10 deletions

View File

@@ -1,6 +1,6 @@
services:
uptime-kuma:
image: louislam/uptime-kuma:latest
image: louislam/uptime-kuma:2
container_name: uptime-kuma
restart: unless-stopped
volumes:
@@ -14,6 +14,20 @@ services:
networks:
- homelab_net
autokuma:
image: ghcr.io/bigboot/autokuma:latest
restart: unless-stopped
volumes:
- /var/run/docker.sock:/var/run/docker.sock:ro
env_file: ../.env
environment:
# 指向你的 Uptime Kuma 内部地址 (如果在同一 bridge 网络下,直接用容器名:端口)
AUTOKUMA__KUMA__URL: http://uptime-kuma:3001
depends_on:
- uptime-kuma
networks:
- homelab_net
networks:
homelab_net:
external: true