Quellcode durchsuchen

Docs: Updated upgrading guide (#8746)

### What problem does this PR solve?


### Type of change

- [x] Documentation Update
tags/v0.20.0
writinwaters vor 3 Monaten
Ursprung
Commit
cf0a1366af
Es ist kein Account mit der E-Mail-Adresse des Committers verbunden
1 geänderte Dateien mit 22 neuen und 4 gelöschten Zeilen
  1. 22
    4
      docs/guides/upgrade_ragflow.mdx

+ 22
- 4
docs/guides/upgrade_ragflow.mdx Datei anzeigen

@@ -72,11 +72,29 @@ To upgrade RAGFlow, you must upgrade **both** your code **and** your Docker imag
git checkout -f v0.19.1
```

3. Update **ragflow/docker/.env** as follows:
3. Update **ragflow/docker/.env**:

```bash
RAGFLOW_IMAGE=infiniflow/ragflow:v0.19.1
```
<Tabs
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:


Laden…
Abbrechen
Speichern