윈도우용 실행파일 커밋

This commit is contained in:
chpark
2025-09-22 17:46:23 +09:00
parent eb1a6aa206
commit 26ede5830c
9 changed files with 208 additions and 14 deletions
+7 -5
View File
@@ -5,7 +5,7 @@ services:
backend:
build:
context: ./backend-node
dockerfile: Dockerfile
dockerfile: Dockerfile.win
container_name: pms-backend-win
ports:
- "8080:8080"
@@ -21,16 +21,18 @@ services:
volumes:
- ./backend-node:/app
- /app/node_modules
- /app/dist
networks:
- pms-network
restart: unless-stopped
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8080/health"]
test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://localhost:8080/health", "||", "exit", "1"]
interval: 30s
timeout: 10s
retries: 3
start_period: 60s
timeout: 15s
retries: 5
start_period: 90s
networks:
pms-network:
driver: bridge
external: false