16 lines
309 B
YAML
16 lines
309 B
YAML
|
|
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
|