diff --git a/apps/weather-display/docker-compose.yml b/apps/weather-display/docker-compose.yml new file mode 100644 index 0000000..af6db87 --- /dev/null +++ b/apps/weather-display/docker-compose.yml @@ -0,0 +1,10 @@ +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 \ No newline at end of file