ERP-node/docker-compose.backend.prod...

33 lines
871 B
YAML
Raw Normal View History

2025-08-21 09:41:46 +09:00
services:
2025-08-28 11:27:15 +09:00
# Node.js 백엔드 (운영용)
2025-08-21 09:41:46 +09:00
backend:
build:
2025-08-22 15:45:05 +09:00
context: ./backend-node
2025-08-28 11:27:15 +09:00
dockerfile: Dockerfile # 운영용 Dockerfile
container_name: pms-backend-prod
2025-08-21 09:41:46 +09:00
ports:
- "8080:8080"
environment:
2025-08-28 11:27:15 +09:00
- NODE_ENV=production
2025-08-22 15:45:05 +09:00
- PORT=8080
- DATABASE_URL=postgresql://postgres:ph0909!!@39.117.244.52:11132/plm
- JWT_SECRET=ilshin-plm-super-secret-jwt-key-2024
- JWT_EXPIRES_IN=24h
- CORS_ORIGIN=http://localhost:9771
- CORS_CREDENTIALS=true
2025-08-28 11:27:15 +09:00
- LOG_LEVEL=info
# 운영용에서는 볼륨 마운트 없음 (보안상 이유)
2025-08-21 09:41:46 +09:00
networks:
- pms-network
restart: unless-stopped
healthcheck:
2025-08-22 15:45:05 +09:00
test: ["CMD", "curl", "-f", "http://localhost:8080/health"]
2025-08-21 09:41:46 +09:00
interval: 30s
timeout: 10s
retries: 3
start_period: 60s
networks:
pms-network:
driver: bridge