Files
homelabstack/stacks/monitoring/docker-compose.yml
T
ginnoir 63889fc150
Deploy to valhalla / deploy (push) Has been cancelled
Complete TB-006 batch 1 SSO so admin apps use Authentik without double login.
Native OAuth/OIDC for Homarr, BookStack, Gitea, and MinIO console; forward_auth with local auth disabled for code-server, uptime, and kopia; Caddy and Authentik scripts updated to match.
2026-06-10 23:52:14 -05:00

38 lines
1.0 KiB
YAML

# monitoring stack — Uptime Kuma + Homarr dashboard.
# (Named "monitoring" to avoid confusion with the raw-compose management plane.)
# Both are bind-mounted and proxied internal-only; both join edge.
services:
uptime-kuma:
container_name: uptime_kuma
image: louislam/uptime-kuma:2
restart: unless-stopped
networks: [edge]
ports:
- "3001:3001"
volumes:
- /config/uptime-kuma:/app/data
- /var/run/docker.sock:/var/run/docker.sock:ro
homarr:
container_name: homarr
image: ghcr.io/homarr-labs/homarr:latest
restart: unless-stopped
networks: [edge]
env_file:
- stack.env
environment:
- BASE_URL=https://homarr.ginnoir.com
ports:
- "7575:7575"
volumes:
- /var/run/docker.sock:/var/run/docker.sock
# homarr-labs stores SQLite + redis under /appdata (not /data or /app/data/configs).
- /config/homarr/appdata:/appdata
- /config/homarr/icons:/app/public/icons
networks:
edge:
name: edge
external: true