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

37 lines
1.2 KiB
YAML
Raw Permalink 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:
context: ../../backend-node
dockerfile: ../docker/prod/backend.Dockerfile # 운영용 Dockerfile
2025-08-28 11:27:15 +09:00
container_name: pms-backend-prod
2025-10-30 12:09:22 +09:00
ports:
- "8080:8080" # 호스트:컨테이너 포트 매핑
networks:
- pms-network
2025-08-21 09:41:46 +09:00
environment:
2025-08-28 11:27:15 +09:00
- NODE_ENV=production
2025-08-22 15:45:05 +09:00
- PORT=8080
2025-09-04 14:45:58 +09:00
- HOST=0.0.0.0 # 모든 인터페이스에서 바인딩
2025-08-22 15:45:05 +09:00
- DATABASE_URL=postgresql://postgres:ph0909!!@39.117.244.52:11132/plm
- JWT_SECRET=ilshin-plm-super-secret-jwt-key-2024
- JWT_EXPIRES_IN=24h
2025-09-04 15:18:25 +09:00
- CORS_ORIGIN=http://192.168.0.70:5555,http://39.117.244.52:5555,http://localhost:9771
2025-08-22 15:45:05 +09:00
- CORS_CREDENTIALS=true
2025-08-28 11:27:15 +09:00
- LOG_LEVEL=info
2025-10-21 09:43:01 +09:00
- ENCRYPTION_KEY=ilshin-plm-mail-encryption-key-32characters-2024-secure
2025-10-30 15:17:48 +09:00
- KMA_API_KEY=ogdXr2e9T4iHV69nvV-IwA
- ITS_API_KEY=d6b9befec3114d648284674b8fddcc32
- EXPRESSWAY_API_KEY=${EXPRESSWAY_API_KEY:-}
2025-08-21 09:41:46 +09:00
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:
2025-10-30 12:09:22 +09:00
external: true # 외부에서 생성된 네트워크 사용