# Uptime Kuma Configuration # This is a separate docker-compose file for Uptime Kuma # It will be included in the main docker-compose.yml version: '3.8' services: uptime-kuma: image: louislam/uptime-kuma:latest container_name: bots_uptime_kuma restart: unless-stopped volumes: - uptime_kuma_data:/app/data ports: - "3001:3001" environment: - UPTIME_KUMA_PORT=3001 networks: - bots_network healthcheck: test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://localhost:3001"] interval: 30s timeout: 10s retries: 3 start_period: 40s volumes: uptime_kuma_data: driver: local networks: bots_network: external: true