Изменения: - Обновлен образ с louislam/uptime-kuma:latest на :2 - Тег :latest указывал на стабильную версию 1.23.17 - Тег :2 указывает на новую мажорную версию 2.0.2 - Создан бекап базы данных перед обновлением (41MB) Результат: - Версия: 2.0.2 (от 22.10.2025) - Статус: работает корректно - Мажорное обновление 1.x → 2.x успешно завершено 🤖 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:2
|
|
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
|