fromis_9/docker-compose.dev.yml
caadiq 91270c2c8b feat: Pretendard 폰트 적용 및 DB 스키마 완성
- Pretendard 폰트로 변경 (CDN)
- albums, tracks 테이블 생성 및 데이터 삽입
- 트랙별 작사/작곡/편곡/설명 정보 추가
- 모든 테이블 및 컬럼에 COMMENT 추가
2026-01-01 00:20:33 +09:00

15 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