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>
35 lines
1 KiB
YAML
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
|