22 lines
549 B
YAML
22 lines
549 B
YAML
version: '3.3'
|
|
|
|
services:
|
|
uptime:
|
|
image: louislam/uptime-kuma:1
|
|
volumes:
|
|
- uptime-volume:/config
|
|
networks:
|
|
- traefik-public
|
|
deploy:
|
|
labels:
|
|
traefik.enable: "true"
|
|
traefik.constraint-label: "traefik-public"
|
|
traefik.http.routers.uptime-http.rule: "Host(`uptime.home.thejimnicholson.com`)"
|
|
traefik.http.routers.uptime-http.entrypoints: "http"
|
|
traefik.http.services.uptime.loadbalancer.server.port: 3001
|
|
networks:
|
|
traefik-public:
|
|
external: true
|
|
volumes:
|
|
uptime-volume:
|