23 lines
657 B
YAML
23 lines
657 B
YAML
# Uptime Kuma Configuration - Status Monitoring Service
|
|
services:
|
|
uptime-kuma:
|
|
# Basic container configuration
|
|
container_name: uptime-kuma
|
|
image: docker.io/louislam/uptime-kuma:1.23.16
|
|
restart: unless-stopped # Auto-recover from crashes
|
|
|
|
# Persistent storage configuration
|
|
volumes:
|
|
- ${APPDATA_PATH}/uptime-kuma/config:/app/data # Monitoring configuration and data
|
|
|
|
# Network configuration
|
|
ports:
|
|
- ${PORT}:3001 # Web dashboard port
|
|
networks:
|
|
- frontend # Connects to frontend network
|
|
|
|
# External network definition
|
|
networks:
|
|
frontend:
|
|
external: true # Uses existing Docker network
|