writinwaters
commited on
Commit
·
561b959
1
Parent(s):
fd3a37d
minor format updates (#3471)
Browse files### What problem does this PR solve?
### Type of change
- [x] Documentation Update
docs/guides/upgrade_ragflow.mdx
CHANGED
|
@@ -9,11 +9,11 @@ import TabItem from '@theme/TabItem';
|
|
| 9 |
|
| 10 |
You can upgrade RAGFlow to the dev version or the latest version:
|
| 11 |
|
| 12 |
-
- The Dev version (Development version) is the latest, tested image.
|
| 13 |
- The latest version is the most recent, officially published release. For example, `v0.13.0`.
|
| 14 |
|
| 15 |
|
| 16 |
-
## 1.
|
| 17 |
|
| 18 |
Update **ragflow/docker/.env** as follows:
|
| 19 |
|
|
@@ -25,8 +25,8 @@ Update **ragflow/docker/.env** as follows:
|
|
| 25 |
]}>
|
| 26 |
<TabItem value="dev">
|
| 27 |
|
| 28 |
-
:::
|
| 29 |
-
The Dev version (Development version) is the latest, tested image.
|
| 30 |
:::
|
| 31 |
|
| 32 |
```bash
|
|
@@ -36,7 +36,7 @@ RAGFLOW_IMAGE=infiniflow/ragflow:dev
|
|
| 36 |
</TabItem>
|
| 37 |
<TabItem value="latest">
|
| 38 |
|
| 39 |
-
:::
|
| 40 |
The latest version is the most recent, officially published release. For example, `v0.13.0`.
|
| 41 |
:::
|
| 42 |
|
|
@@ -47,7 +47,7 @@ RAGFLOW_IMAGE=infiniflow/ragflow:latest
|
|
| 47 |
</TabItem>
|
| 48 |
</Tabs>
|
| 49 |
|
| 50 |
-
## Pull the latest code
|
| 51 |
|
| 52 |
Pull the latest code from inside Docker:
|
| 53 |
|
|
@@ -55,7 +55,7 @@ Pull the latest code from inside Docker:
|
|
| 55 |
git pull
|
| 56 |
```
|
| 57 |
|
| 58 |
-
## Update RAGFlow image and restart RAGFlow
|
| 59 |
|
| 60 |
```bash
|
| 61 |
docker compose -f docker/docker-compose.yml pull
|
|
|
|
| 9 |
|
| 10 |
You can upgrade RAGFlow to the dev version or the latest version:
|
| 11 |
|
| 12 |
+
- The Dev version (Development version) is the latest, tested Docker image of RAGFlow.
|
| 13 |
- The latest version is the most recent, officially published release. For example, `v0.13.0`.
|
| 14 |
|
| 15 |
|
| 16 |
+
## 1. Update RAGFLOW_IMAGE
|
| 17 |
|
| 18 |
Update **ragflow/docker/.env** as follows:
|
| 19 |
|
|
|
|
| 25 |
]}>
|
| 26 |
<TabItem value="dev">
|
| 27 |
|
| 28 |
+
:::danger IMPORTANT
|
| 29 |
+
The Dev version (Development version) is the latest, tested Docker image of RAGFlow.
|
| 30 |
:::
|
| 31 |
|
| 32 |
```bash
|
|
|
|
| 36 |
</TabItem>
|
| 37 |
<TabItem value="latest">
|
| 38 |
|
| 39 |
+
:::danger IMPORTANT
|
| 40 |
The latest version is the most recent, officially published release. For example, `v0.13.0`.
|
| 41 |
:::
|
| 42 |
|
|
|
|
| 47 |
</TabItem>
|
| 48 |
</Tabs>
|
| 49 |
|
| 50 |
+
## 2. Pull the latest code
|
| 51 |
|
| 52 |
Pull the latest code from inside Docker:
|
| 53 |
|
|
|
|
| 55 |
git pull
|
| 56 |
```
|
| 57 |
|
| 58 |
+
## 3. Update RAGFlow image and restart RAGFlow
|
| 59 |
|
| 60 |
```bash
|
| 61 |
docker compose -f docker/docker-compose.yml pull
|