Docs: update for v0.19.0 (#7823)

### What problem does this PR solve?

update for v0.19.0

### Type of change

- [x] Documentation Update
This commit is contained in:
liu an
2025-05-23 18:18:58 +08:00
committed by Yingfeng Zhang
parent c283ea57fd
commit 590b9dabab
24 changed files with 67 additions and 67 deletions

View File

@ -66,16 +66,16 @@ 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.18.0`:
2. Switch to the latest, officially published release, e.g., `v0.19.0`:
```bash
git checkout -f v0.18.0
git checkout -f v0.19.0
```
3. Update **ragflow/docker/.env** as follows:
```bash
RAGFLOW_IMAGE=infiniflow/ragflow:v0.18.0
RAGFLOW_IMAGE=infiniflow/ragflow:v0.19.0
```
4. Update the RAGFlow image and restart RAGFlow:
@ -92,10 +92,10 @@ To upgrade RAGFlow, you must upgrade **both** your code **and** your Docker imag
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.18.0.tar infiniflow/ragflow:v0.18.0
docker save -o ragflow.v0.19.0.tar infiniflow/ragflow:v0.19.0
```
3. Copy the **.tar** file to the target server.
4. Load the **.tar** file into Docker:
```bash
docker load -i ragflow.v0.18.0.tar
docker load -i ragflow.v0.19.0.tar
```