add uptime / auto kuma

This commit is contained in:
2026-01-30 09:28:47 +01:00
parent 8e25be9224
commit a5aa0999ad
6 changed files with 128 additions and 90 deletions

20
compose.kuma.yaml Normal file
View File

@@ -0,0 +1,20 @@
services:
uptime-kuma:
image: louislam/uptime-kuma:2
container_name: uptime-kuma
restart: unless-stopped
volumes:
- /opt/uptime-kuma:/app/data
- /var/run/docker.sock:/var/run/docker.sock
ports:
- "3001:3001"
auto-kuma:
image: ghcr.io/bigboot/autokuma:uptime-kuma-v1-sha-cbd2537
container_name: auto-kuma
environment:
- AUTOKUMA__KUMA__URL=http://host:3001
volumes:
- /var/run/docker.sock:/var/run/docker.sock
restart: unless-stopped
extra_hosts:
- "host:${HOST_IP}"