Docs: Updated upgrading guide (#8746)

### What problem does this PR solve?


### Type of change

- [x] Documentation Update
This commit is contained in:
writinwaters
2025-07-09 17:13:04 +08:00
committed by GitHub
parent 779932dcb0
commit cf0a1366af

View File

@ -72,11 +72,29 @@ To upgrade RAGFlow, you must upgrade **both** your code **and** your Docker imag
git checkout -f v0.19.1 git checkout -f v0.19.1
``` ```
3. Update **ragflow/docker/.env** as follows: 3. Update **ragflow/docker/.env**:
```bash <Tabs
RAGFLOW_IMAGE=infiniflow/ragflow:v0.19.1 defaultValue="slim"
``` values={[
{label: 'slim', value: 'slim'},
{label: 'full', value: 'full'},
]}>
<TabItem value="slim">
```bash
RAGFLOW_IMAGE=infiniflow/ragflow:v0.19.1-slim
```
</TabItem>
<TabItem value="full">
```bash
RAGFLOW_IMAGE=infiniflow/ragflow:v0.19.1
```
</TabItem>
</Tabs>
4. Update the RAGFlow image and restart RAGFlow: 4. Update the RAGFlow image and restart RAGFlow: