Docs: Update version references to v0.20.5 in READMEs and docs (#10015)

### What problem does this PR solve?

- Update version tags in README files (including translations) from
v0.20.4 to v0.20.5
- 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
This commit is contained in:
Liu An
2025-09-10 11:20:43 +08:00
committed by GitHub
parent 38ff2ffc01
commit 067b4fc012
26 changed files with 67 additions and 67 deletions

View File

@ -66,10 +66,10 @@ To upgrade RAGFlow, you must upgrade **both** your code **and** your Docker imag
git clone https://github.com/infiniflow/ragflow.git
```
2. Switch to the latest, officially published release, e.g., `v0.20.4`:
2. Switch to the latest, officially published release, e.g., `v0.20.5`:
```bash
git checkout -f v0.20.4
git checkout -f v0.20.5
```
3. Update **ragflow/docker/.env**:
@ -83,14 +83,14 @@ To upgrade RAGFlow, you must upgrade **both** your code **and** your Docker imag
<TabItem value="slim">
```bash
RAGFLOW_IMAGE=infiniflow/ragflow:v0.20.4-slim
RAGFLOW_IMAGE=infiniflow/ragflow:v0.20.5-slim
```
</TabItem>
<TabItem value="full">
```bash
RAGFLOW_IMAGE=infiniflow/ragflow:v0.20.4
RAGFLOW_IMAGE=infiniflow/ragflow:v0.20.5
```
</TabItem>
@ -114,10 +114,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.20.4.tar infiniflow/ragflow:v0.20.4
docker save -o ragflow.v0.20.5.tar infiniflow/ragflow:v0.20.5
```
3. Copy the **.tar** file to the target server.
4. Load the **.tar** file into Docker:
```bash
docker load -i ragflow.v0.20.4.tar
docker load -i ragflow.v0.20.5.tar
```