feat: add upgrade

This commit is contained in:
Mikucat 2024-04-05 16:59:59 +08:00
parent 937371cdd7
commit cf4c5e7719
No known key found for this signature in database
GPG Key ID: CE6B09A6F462E04D
2 changed files with 12 additions and 0 deletions

View File

@ -4,6 +4,7 @@
- [Judge Environment](en/guide/judge_environment.md)
- Management
- [Backup & Restore](en/management/backup_and_restore.md)
- [Upgrade](en/management/upgrade.md)
- Development
- [Architecture](en/development/architecture.md)
- [Build](en/development/build.md)

11
en/management/upgrade.md Normal file
View File

@ -0,0 +1,11 @@
# Upgrade
## Minor Updates
If no breaking changes between two versions, we can just update deploy config and restart.
```bash
git pull
git checkout $version
docker compose up -d
```