도커 파일 및 스크립트 파일 위치 정리

This commit is contained in:
2025-08-28 13:44:01 +09:00
parent 58d8fb1dd2
commit e9082d7fef
15 changed files with 64 additions and 230 deletions

View File

@@ -0,0 +1,22 @@
services:
# Next.js 프론트엔드만
frontend:
build:
context: ../../frontend
dockerfile: ../docker/dev/frontend.Dockerfile
container_name: pms-frontend-mac
ports:
- "9771:3000"
environment:
- NEXT_PUBLIC_API_URL=http://localhost:8080/api
volumes:
- ../../frontend:/app
- /app/node_modules
- /app/.next
networks:
- pms-network
restart: unless-stopped
networks:
pms-network:
driver: bridge