Files
docker-compose/uptime-kuma/docker-compose.yml
T

23 lines
657 B
YAML
Raw Normal View History

2025-07-14 12:48:15 +05:30
# Uptime Kuma Configuration - Status Monitoring Service
2025-06-18 23:26:18 +05:30
services:
uptime-kuma:
2025-07-14 12:48:15 +05:30
# Basic container configuration
2025-06-18 23:26:18 +05:30
container_name: uptime-kuma
2025-07-13 18:35:45 +05:30
image: docker.io/louislam/uptime-kuma:1.23.16
2025-07-14 12:48:15 +05:30
restart: unless-stopped # Auto-recover from crashes
# Persistent storage configuration
2025-06-18 23:26:18 +05:30
volumes:
2025-07-14 12:48:15 +05:30
- ${APPDATA_PATH}/uptime-kuma/config:/app/data # Monitoring configuration and data
# Network configuration
2025-06-18 23:26:18 +05:30
ports:
2025-07-14 12:48:15 +05:30
- ${PORT}:3001 # Web dashboard port
2025-07-08 16:40:16 +05:30
networks:
2025-07-14 12:48:15 +05:30
- frontend # Connects to frontend network
2025-07-08 16:40:16 +05:30
2025-07-14 12:48:15 +05:30
# External network definition
2025-07-08 16:40:16 +05:30
networks:
frontend:
2025-07-14 12:48:15 +05:30
external: true # Uses existing Docker network