d53b14b1de
- Fix trailing whitespace in compose files - Add missing final newlines (EOF) - Fix indentation in dockmon (3-space -> 2-space) and glance monitor.yml - Align comments consistently
33 lines
1.1 KiB
YAML
33 lines
1.1 KiB
YAML
services:
|
|
uptime-kuma:
|
|
image: louislam/uptime-kuma:2
|
|
container_name: uptime-kuma
|
|
restart: unless-stopped
|
|
volumes:
|
|
- data:/app/data
|
|
# ports:
|
|
# - "3001:3001"
|
|
labels:
|
|
- "traefik.enable=true"
|
|
- "traefik.http.services.uptime-kuma.loadbalancer.server.port=3001"
|
|
|
|
# Prod Router
|
|
- "traefik.http.routers.uptime-kuma.rule=Host(`uptime.forust.xyz`)"
|
|
- "traefik.http.routers.uptime-kuma.entrypoints=websecure"
|
|
- "traefik.http.routers.uptime-kuma.tls.certresolver=letsencrypt"
|
|
# Local Router
|
|
- "traefik.http.routers.uptime-kuma-local.rule=Host(`uptime.workstation.internal`)"
|
|
- "traefik.http.routers.uptime-kuma-local.entrypoints=websecure"
|
|
- "traefik.http.routers.uptime-kuma-local.tls=true"
|
|
# Dev Router
|
|
- "traefik.http.routers.uptime-kuma-dev.rule=Host(`uptime.gigaforust.internal`)"
|
|
- "traefik.http.routers.uptime-kuma-dev.entrypoints=websecure"
|
|
- "traefik.http.routers.uptime-kuma-dev.tls=true"
|
|
networks:
|
|
- proxy
|
|
volumes:
|
|
data:
|
|
networks:
|
|
proxy:
|
|
external: true
|