fix: 루트 경로 /admin 리다이렉트 + git URL 인코딩 수정

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
chpark
2026-03-27 01:42:48 +09:00
parent 99ae8ed79e
commit 6257025c8e
2 changed files with 6 additions and 6 deletions
+3 -6
View File
@@ -39,12 +39,9 @@ docker compose down 2>/dev/null || docker-compose down 2>/dev/null
echo "[2/5] 이전 이미지 정리..."
docker image prune -f
# Git 설정 - 인증정보 URL에 포함시켜 비밀번호 입력 생략
# @는 %40으로 인코딩
GIT_USER="chpark%40wace.me"
GIT_PASS="1313Qkrckd%21%21"
GIT_REPO="39.117.244.52:3000/chpark/admin_st.git"
GIT_URL="http://${GIT_USER}:${GIT_PASS}@${GIT_REPO}"
# Git 설정 - URL에 인증정보 포함 (특수문자 인코딩 필수)
# chpark@wace.me → chpark%40wace.me / 1313Qkrckd!! → 1313Qkrckd%21%21
GIT_URL='http://chpark%40wace.me:1313Qkrckd%21%21@39.117.244.52:3000/chpark/admin_st.git'
echo ""
echo "[3/5] Git 최신 소스 받기..."