fromis_9/docker-compose.dev.yml

16 lines
309 B
YAML
Raw Normal View History

services:
fromis9-web:
image: node:20-alpine
container_name: fromis9-web
working_dir: /app
command: sh -c "npm install && npm run dev -- --host 0.0.0.0 --port 80"
volumes:
- ./frontend:/app
networks:
- app
restart: unless-stopped
networks:
app:
external: true