From dda66e340b9b483a5419f003201baac866518462 Mon Sep 17 00:00:00 2001 From: nathan Date: Tue, 21 Apr 2026 19:39:59 -0400 Subject: [PATCH] feat: add Docker Compose configuration for weatherchannel service with Traefik integration --- nodes/heimdall/weatherchannel/compose.yaml | 35 ++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 nodes/heimdall/weatherchannel/compose.yaml diff --git a/nodes/heimdall/weatherchannel/compose.yaml b/nodes/heimdall/weatherchannel/compose.yaml new file mode 100644 index 0000000..aff8c47 --- /dev/null +++ b/nodes/heimdall/weatherchannel/compose.yaml @@ -0,0 +1,35 @@ +############################################################### +# Networks +############################################################### +networks: + proxy-net: + name: proxy-net + external: true + +############################################################### +# Services +############################################################### +services: + weatherchannel: + image: ghcr.io/mwood77/ws4kp-international + container_name: weatherchannel + restart: unless-stopped + healthcheck: + test: wget --no-verbose --tries=1 --spider http://localhost:8080/ || exit 1 + start_period: 20s + timeout: 3s + interval: 15s + retries: 3 + ports: + - 8080:8080 + networks: + - proxy-net + labels: + - "traefik.enable=true" + - "traefik.http.routers.weatherchannel.entrypoints=websecure" + - "traefik.http.routers.weatherchannel.rule=Host(`weather.castaldifamily.com`)" + - "traefik.http.routers.weatherchannel.tls=true" + - "traefik.http.routers.weatherchannel.tls.certresolver=cloudflare" + - "traefik.http.routers.weatherchannel.service=weatherchannel" + - "traefik.http.services.weatherchannel.loadbalancer.server.port=8080" +