docs: rb8001 배포 방식 수정 - Gitea Actions 자동 배포로 업데이트

This commit is contained in:
happybell80 2025-08-26 14:23:01 +09:00
parent 1d69cda676
commit 76fbddd9ff

View File

@ -161,13 +161,13 @@ response["level"] = stats.get("level", 1)
-d '{"text":"안녕하세요"}'
```
4. **배포** (5분)
4. **배포** (자동)
- Git commit & push
- 서버에서 Docker 컨테이너 재빌드 및 재시작
```bash
docker compose down rb8001
docker compose up -d --build rb8001
```
- Gitea Actions가 자동으로 처리
- 51124 서버 SSH 접속
- git pull
- docker compose down/up --build
- health check
### 4.2 검증 방법
1. Frontend 로그인 (happybell80)
@ -206,8 +206,8 @@ rb8001(8001) → /api/message 처리
3. **성능**: 동시 요청 처리
### 6.2 롤백 계획
- rb8001 코드 git revert
- Docker 컨테이너 재빌드 및 재시작
- rb8001 코드 git revert & push
- Gitea Actions가 자동 재배포
---