chore: 불필요한 named volume 제거

- frontend_modules, backend_modules 볼륨 제거
- 컨테이너에서 npm install 시 호스트 node_modules에 직접 설치

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
caadiq 2026-01-19 09:58:46 +09:00
parent a9bdbd1ec2
commit e0f328803e

View file

@ -6,7 +6,6 @@ services:
- "com.centurylinklabs.watchtower.enable=false" - "com.centurylinklabs.watchtower.enable=false"
volumes: volumes:
- ./frontend:/app - ./frontend:/app
- frontend_modules:/app/node_modules
depends_on: depends_on:
- fromis9-backend - fromis9-backend
networks: networks:
@ -22,7 +21,6 @@ services:
- .env - .env
volumes: volumes:
- ./backend:/app - ./backend:/app
- backend_modules:/app/node_modules
networks: networks:
- app - app
- db - db
@ -48,10 +46,6 @@ services:
- app - app
restart: unless-stopped restart: unless-stopped
volumes:
backend_modules:
frontend_modules:
networks: networks:
app: app:
external: true external: true