23 lines
478 B
YAML
23 lines
478 B
YAML
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
|