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" +