1
0

Add uptime_kuma container
All checks were successful
Deploy / Deploy (push) Successful in 15s

This commit is contained in:
2025-11-28 09:00:40 +00:00
parent f1c5a69f54
commit d4c968f424
2 changed files with 52 additions and 0 deletions

19
compose.yml Normal file
View File

@@ -0,0 +1,19 @@
services:
uptime_kuma:
container_name: uptime_kuma
image: louislam/uptime-kuma:2.0.2
restart: unless-stopped
user: 2009:2009 # uptime_kuma:uptime_kuma
networks:
- uptime_kuma_network
ports:
- 3001:3001
volumes:
- ./data:/app/data:rw
- /var/run/docker.sock:/var/run/docker.sock:rw
networks:
uptime_kuma_network:
name: uptime_kuma_network
driver: bridge