From 1b368e989658653c68496bc480e08cc9dd13c2dc Mon Sep 17 00:00:00 2001 From: gahusb Date: Mon, 6 Apr 2026 21:47:52 +0900 Subject: [PATCH] =?UTF-8?q?fix(deploy):=20deploy.sh=EC=97=90=20realestate-?= =?UTF-8?q?lab=20=EB=B9=8C=EB=93=9C/=ED=97=AC=EC=8A=A4=EC=B2=B4=ED=81=AC?= =?UTF-8?q?=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit docker compose up --build 목록과 헬스체크 대상에 realestate-lab 누락 수정. Co-Authored-By: Claude Opus 4.6 --- scripts/deploy.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/deploy.sh b/scripts/deploy.sh index c168202..4841a2e 100644 --- a/scripts/deploy.sh +++ b/scripts/deploy.sh @@ -52,7 +52,7 @@ bash "$SRC/scripts/deploy-nas.sh" # ── 변경된 서비스만 재빌드 (deployer 제외 — 자기 자신을 재빌드하면 스크립트 중단됨) ── cd "$DST" -docker compose up -d --build backend travel-proxy stock-lab music-lab blog-lab frontend +docker compose up -d --build backend travel-proxy stock-lab music-lab blog-lab realestate-lab frontend docker exec lotto-frontend nginx -s reload 2>/dev/null || true # ── 배포 후 헬스체크 ── @@ -61,7 +61,7 @@ sleep 5 HEALTH_OK=true # 컨테이너 내부에서는 서비스명 + 내부포트(8000)로 접근 -for endpoint in "http://backend:8000/health" "http://stock-lab:8000/health" "http://travel-proxy:8000/health" "http://music-lab:8000/health" "http://blog-lab:8000/health"; do +for endpoint in "http://backend:8000/health" "http://stock-lab:8000/health" "http://travel-proxy:8000/health" "http://music-lab:8000/health" "http://blog-lab:8000/health" "http://realestate-lab:8000/health"; do if ! curl -sf --max-time 10 --retry 2 --retry-delay 3 "$endpoint" > /dev/null 2>&1; then echo "HEALTH_FAIL: $endpoint" HEALTH_OK=false