- Pretendard 폰트로 변경 (CDN) - albums, tracks 테이블 생성 및 데이터 삽입 - 트랙별 작사/작곡/편곡/설명 정보 추가 - 모든 테이블 및 컬럼에 COMMENT 추가
15 lines
309 B
YAML
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
|