Adding comprehensive comments

This commit is contained in:
2025-07-14 12:48:15 +05:30
parent e57dfa763e
commit ff5ae47bef
22 changed files with 683 additions and 329 deletions

View File

@@ -1,15 +1,22 @@
# 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
restart: unless-stopped # Auto-recover from crashes
# Persistent storage configuration
volumes:
- ${APPDATA_PATH}/uptime-kuma/config:/app/data
- ${APPDATA_PATH}/uptime-kuma/config:/app/data # Monitoring configuration and data
# Network configuration
ports:
- ${PORT}:3001
- ${PORT}:3001 # Web dashboard port
networks:
- frontend
- frontend # Connects to frontend network
# External network definition
networks:
frontend:
external: true
external: true # Uses existing Docker network