diff --git a/docs/guides/upgrade_ragflow.md b/docs/guides/upgrade_ragflow.md deleted file mode 100644 index 18139093e..000000000 --- a/docs/guides/upgrade_ragflow.md +++ /dev/null @@ -1,47 +0,0 @@ ---- -sidebar_position: 7 -slug: /upgrade_ragflow ---- - -# Upgrade RAGFlow - -You can upgrade RAGFlow to dev version or the latest version: - -- A Dev version (Development version) is the latest, tested image. -- The latest version is the most recent, officially published release. - -## Upgrade RAGFlow to the dev version - -1. Update **ragflow/docker/.env** as follows: - - ```bash - RAGFLOW_IMAGE=infiniflow/ragflow:dev - ``` - -2. Pull the latest code from inside Docker: - - ```bash - git pull - ``` - -3. Update RAGFlow image and restart RAGFlow: - - ```bash - docker compose -f docker/docker-compose.yml pull - docker compose -f docker/docker-compose.yml up -d - ``` - -## Upgrade RAGFlow to the latest version - -1. Update **ragflow/docker/.env** as follows: - - ```bash - RAGFLOW_IMAGE=infiniflow/ragflow:latest - ``` - -2. Update the RAGFlow image and restart RAGFlow: - - ```bash - docker compose -f docker/docker-compose.yml pull - docker compose -f docker/docker-compose.yml up -d - ``` diff --git a/docs/guides/upgrade_ragflow.mdx b/docs/guides/upgrade_ragflow.mdx new file mode 100644 index 000000000..40ade5ae6 --- /dev/null +++ b/docs/guides/upgrade_ragflow.mdx @@ -0,0 +1,63 @@ +--- +sidebar_position: 7 +slug: /upgrade_ragflow +--- + +# Upgrade RAGFlow +import Tabs from '@theme/Tabs'; +import TabItem from '@theme/TabItem'; + +You can upgrade RAGFlow to the dev version or the latest version: + +- The Dev version (Development version) is the latest, tested image. +- The latest version is the most recent, officially published release. For example, `v0.13.0`. + + +## 1. Upgrade RAGFLOW_IMAGE + +Update **ragflow/docker/.env** as follows: + + + + +:::tip IMPORTANT +The Dev version (Development version) is the latest, tested image. +::: + +```bash +RAGFLOW_IMAGE=infiniflow/ragflow:dev +``` + + + + +:::tip IMPORTANT +The latest version is the most recent, officially published release. For example, `v0.13.0`. +::: + +```bash +RAGFLOW_IMAGE=infiniflow/ragflow:latest +``` + + + + +## Pull the latest code + +Pull the latest code from inside Docker: + +```bash +git pull +``` + +## Update RAGFlow image and restart RAGFlow + +```bash +docker compose -f docker/docker-compose.yml pull +docker compose -f docker/docker-compose.yml up -d +``` \ No newline at end of file diff --git a/docs/references/faq.md b/docs/references/faq.md index 8cf4a543b..3033b343f 100644 --- a/docs/references/faq.md +++ b/docs/references/faq.md @@ -400,4 +400,4 @@ This error occurs because there are too many chunks matching your search criteri ### 9. How to upgrade RAGFlow? -See [Upgrade RAGFlow](../guides/upgrade_ragflow.md) for more information. +See [Upgrade RAGFlow](../guides/upgrade_ragflow.mdx) for more information.