Docs: Update version references to v0.23.0 in READMEs and docs (#12253)

### What problem does this PR solve?

- Update version tags in README files (including translations) from
v0.22.1 to v0.23.0
- Modify Docker image references and documentation to reflect new
version
- Update version badges and image descriptions
- Maintain consistency across all language variants of README files

### Type of change

- [x] Documentation Update

Co-authored-by: Jin Hai <haijin.chn@gmail.com>
This commit is contained in:
Liu An
2025-12-27 20:44:35 +08:00
committed by GitHub
parent ef5341b664
commit 8dc5b4dc56
25 changed files with 233 additions and 266 deletions

View File

@ -60,16 +60,16 @@ To upgrade RAGFlow, you must upgrade **both** your code **and** your Docker imag
git pull
```
3. Switch to the latest, officially published release, e.g., `v0.22.1`:
3. Switch to the latest, officially published release, e.g., `v0.23.0`:
```bash
git checkout -f v0.22.1
git checkout -f v0.23.0
```
4. Update **ragflow/docker/.env**:
```bash
RAGFLOW_IMAGE=infiniflow/ragflow:v0.22.1
RAGFLOW_IMAGE=infiniflow/ragflow:v0.23.0
```
5. Update the RAGFlow image and restart RAGFlow:
@ -90,10 +90,10 @@ No, you do not need to. Upgrading RAGFlow in itself will *not* remove your uploa
1. From an environment with Internet access, pull the required Docker image.
2. Save the Docker image to a **.tar** file.
```bash
docker save -o ragflow.v0.22.1.tar infiniflow/ragflow:v0.22.1
docker save -o ragflow.v0.23.0.tar infiniflow/ragflow:v0.23.0
```
3. Copy the **.tar** file to the target server.
4. Load the **.tar** file into Docker:
```bash
docker load -i ragflow.v0.22.1.tar
docker load -i ragflow.v0.23.0.tar
```