deployer: blog-lab 서비스 배포 스크립트에 추가

rsync 대상, docker compose up, 헬스체크에 blog-lab 포함

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-04-05 20:05:14 +09:00
parent caeb72d310
commit 8b916194aa
2 changed files with 3 additions and 3 deletions

View File

@@ -32,7 +32,7 @@ cd "$SRC"
# backend, travel-proxy, deployer, nginx, scripts, docker-compose.yml, .env 등
RSYNC_EXCLUDES="--exclude .git --exclude __pycache__ --exclude *.pyc --exclude data/"
for dir in backend travel-proxy deployer stock-lab music-lab nginx scripts; do
for dir in backend travel-proxy deployer stock-lab music-lab blog-lab nginx scripts; do
rsync -a --delete $RSYNC_EXCLUDES \
"$SRC/$dir/" "$DST/$dir/"
done