Files
homelab-docs/apps/weather-display/docker-compose.yml
drew 1a0ff7953d
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 2s
Update apps/weather-display/docker-compose.yml
2026-07-04 19:22:54 +00:00

16 lines
379 B
YAML

services:
weather-display:
image: davisdre/weather-display:latest
container_name: weather-display
restart: unless-stopped
ports:
- "80:3000" # change container port if your app is not on 3000
environment:
NODE_ENV: production
TZ: America/Indiana/Indianapolis
networks:
- web_gateway
networks:
web_gateway:
external: true