Files
aviation/ui/docker-compose.yml
2023-11-18 08:45:56 -05:00

27 lines
468 B
YAML

version: '3'
name: weather
services:
ui:
container_name: weather-ui
env_file:
- .env
environment:
- NODE_ENV=${NODE_ENV:-development}
ports:
- ${UI_PORT:-3000}:3000
build:
context: ./
target: dev
command: "npm run dev"
volumes:
- ./src:/app/src
- ./public:/app/public
- ./styles:/app/styles
networks:
- weather-frontend
restart: unless-stopped
networks:
weather-frontend: