OVHserver/opt/04-tools/uptime-kuma/docker-compose.yml
SamoilenkoVadym a987d45fbc chore: initial infrastructure setup with Syncthing, Git and documentation
Set up three-tier synchronization: Syncthing (real-time), GitHub (version control), rsync (disaster recovery). Includes complete documentation for future Claude sessions.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-05 16:41:12 +00:00

35 lines
1 KiB
YAML

version: '3.8'
services:
uptime-kuma:
image: louislam/uptime-kuma:latest
container_name: uptime-kuma
restart: unless-stopped
networks:
- traefik-public
volumes:
- uptime-kuma-data:/app/data
environment:
# SMTP Configuration - Office365
SMTPHOST: aiimpress-com0e.mail.protection.outlook.com
SMTPPORT: 25
SMTPSECURE: "true"
SMTPFROM: noreply@ai-impress.com
TIMEZONE: Europe/London
labels:
- "traefik.enable=true"
- "traefik.docker.network=traefik-public"
- "traefik.http.routers.uptime-kuma.rule=Host(`status.ai-impress.com`)"
- "traefik.http.routers.uptime-kuma.entrypoints=websecure"
- "traefik.http.routers.uptime-kuma.tls.certresolver=cloudflare"
- "traefik.http.services.uptime-kuma.loadbalancer.server.port=3001"
- "traefik.http.routers.uptime-kuma.middlewares=authentik@file"
networks:
traefik-public:
external: true
volumes:
uptime-kuma-data:
external: true
name: uptime-kuma_uptime-kuma-data