Docs: Update version references to v0.25.3 in READMEs and docs (#14896)

### What problem does this PR solve?

- Update version tags in README files (including translations) from
v0.25.2 to v0.25.3
- 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
2026-05-13 18:42:42 +08:00
committed by GitHub
parent f3b3596c29
commit 3182fd0789
31 changed files with 77 additions and 77 deletions

View File

@@ -16,7 +16,7 @@ The RAGFlow CLI is a command-line-based system administration tool that offers a
2. Install ragflow-cli.
```bash
pip install ragflow-cli==0.25.2
pip install ragflow-cli==0.25.3
```
3. Launch the CLI client:
@@ -439,7 +439,7 @@ show_version
+-----------------------+
| version |
+-----------------------+
| v0.25.2-24-g6f60e9f9e |
| v0.25.3-24-g6f60e9f9e |
+-----------------------+
```

View File

@@ -103,7 +103,7 @@ RAGFlow utilizes MinIO as its object storage solution, leveraging its scalabilit
- `SVR_HTTP_PORT`
The port used to expose RAGFlow's HTTP API service to the host machine, allowing **external** access to the service running inside the Docker container. Defaults to `9380`.
- `RAGFLOW_IMAGE`
The Docker image edition. Defaults to `infiniflow/ragflow:v0.25.2` (the RAGFlow Docker image without embedding models).
The Docker image edition. Defaults to `infiniflow/ragflow:v0.25.3` (the RAGFlow Docker image without embedding models).
:::tip NOTE
If you cannot download the RAGFlow Docker image, try the following mirrors.

View File

@@ -62,16 +62,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.25.2`:
3. Switch to the latest, officially published release, e.g., `v0.25.3`:
```bash
git checkout -f v0.25.2
git checkout -f v0.25.3
```
4. Update **ragflow/docker/.env**:
```bash
RAGFLOW_IMAGE=infiniflow/ragflow:v0.25.2
RAGFLOW_IMAGE=infiniflow/ragflow:v0.25.3
```
5. Update the RAGFlow image and restart RAGFlow:
@@ -92,10 +92,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.25.2.tar infiniflow/ragflow:v0.25.2
docker save -o ragflow.v0.25.3.tar infiniflow/ragflow:v0.25.3
```
3. Copy the **.tar** file to the target server.
4. Load the **.tar** file into Docker:
```bash
docker load -i ragflow.v0.25.2.tar
docker load -i ragflow.v0.25.3.tar
```