jinhai-2012 commited on
Commit
18031e9
·
1 Parent(s): d6e6e83

Fix README description (#2773)

Browse files

### What problem does this PR solve?

_Briefly describe what this PR aims to solve. Include background context
that will help reviewers understand the purpose of the PR._

### Type of change

- [x] Documentation Update

---------

Signed-off-by: Jin Hai <[email protected]>

Files changed (5) hide show
  1. README.md +1 -1
  2. README_ja.md +1 -1
  3. README_ko.md +1 -1
  4. README_zh.md +1 -1
  5. docs/quickstart.mdx +1 -1
README.md CHANGED
@@ -153,7 +153,7 @@ Try our demo at [https://demo.ragflow.io](https://demo.ragflow.io).
153
  ```
154
 
155
  3. Build the pre-built Docker images and start up the server:
156
- > Running the following commands automatically downloads the *dev* version RAGFlow Docker image. To download and run a specified Docker version, update `RAGFLOW_IMAGE` in **docker/.env** to the intended version, for example `RAGFLOW_IMAGE=infiniflow/ragflow:v0.12.0`, before running the following commands.
157
 
158
  ```bash
159
  $ cd ragflow/docker
 
153
  ```
154
 
155
  3. Build the pre-built Docker images and start up the server:
156
+ > Running the following commands automatically downloads the *slim-dev* version RAGFlow Docker image. To download and run a specified Docker version, update `RAGFLOW_IMAGE` in **docker/.env** to the intended version, for example `RAGFLOW_IMAGE=infiniflow/ragflow:v0.12.0-slim`, before running the following commands.
157
 
158
  ```bash
159
  $ cd ragflow/docker
README_ja.md CHANGED
@@ -141,7 +141,7 @@
141
  $ docker compose up -d
142
  ```
143
 
144
- > 上記のコマンドを実行すると、RAGFlowの開発版dockerイメージが自動的にダウンロードされます。 特定のバージョンのDockerイメージをダウンロードして実行したい場合は、docker/.envファイルのRAGFLOW_IMAGE変数を見つけて、対応するバージョンに変更してください。 例えば、`RAGFLOW_IMAGE=infiniflow/ragflow:v0.12.0`として、上記のコマンドを実行してください。
145
 
146
  > コアイメージのサイズは約 1 GB で、ロードに時間がかかる場合があります。
147
 
 
141
  $ docker compose up -d
142
  ```
143
 
144
+ > 上記のコマンドを実行すると、RAGFlowの開発版dockerイメージが自動的にダウンロードされます。 特定のバージョンのDockerイメージをダウンロードして実行したい場合は、docker/.envファイルのRAGFLOW_IMAGE変数を見つけて、対応するバージョンに変更してください。 例えば、`RAGFLOW_IMAGE=infiniflow/ragflow:v0.12.0-slim`として、上記のコマンドを実行してください。
145
 
146
  > コアイメージのサイズは約 1 GB で、ロードに時間がかかる場合があります。
147
 
README_ko.md CHANGED
@@ -138,7 +138,7 @@
138
 
139
  3. 미리 빌드된 Docker 이미지를 생성하고 서버를 시작하세요:
140
 
141
- > 다음 명령어를 실행하면 *dev* 버전의 RAGFlow Docker 이미지가 자동으로 다운로드됩니다. 특정 Docker 버전을 다운로드하고 실행하려면, **docker/.env** 파일에서 `RAGFLOW_IMAGE`을 원하는 버전으로 업데이트한 후, 예를 들어 `RAGFLOW_IMAGE=infiniflow/ragflow:v0.12.0`로 업데이트 한 뒤, 다음 명령어를 실행하세요.
142
  ```bash
143
  $ cd ragflow/docker
144
  $ chmod +x ./entrypoint.sh
 
138
 
139
  3. 미리 빌드된 Docker 이미지를 생성하고 서버를 시작하세요:
140
 
141
+ > 다음 명령어를 실행하면 *dev* 버전의 RAGFlow Docker 이미지가 자동으로 다운로드됩니다. 특정 Docker 버전을 다운로드하고 실행하려면, **docker/.env** 파일에서 `RAGFLOW_IMAGE`을 원하는 버전으로 업데이트한 후, 예를 들어 `RAGFLOW_IMAGE=infiniflow/ragflow:v0.12.0-slim`로 업데이트 한 뒤, 다음 명령어를 실행하세요.
142
  ```bash
143
  $ cd ragflow/docker
144
  $ chmod +x ./entrypoint.sh
README_zh.md CHANGED
@@ -141,7 +141,7 @@
141
  $ docker compose -f docker-compose.yml up -d
142
  ```
143
 
144
- > 请注意,运行上述命令会自动下载 RAGFlow 的开发版本 docker 镜像。如果你想下载并运行特定版本的 docker 镜像,请在 docker/.env 文件中找到 RAGFLOW_IMAGE 变量,将其改为对应版本。例如 `RAGFLOW_IMAGE=infiniflow/ragflow:v0.12.0`,然后运行上述命令。
145
 
146
  > 核心镜像下载大小为 1 GB,可能需要一定时间拉取。请耐心等待。
147
 
 
141
  $ docker compose -f docker-compose.yml up -d
142
  ```
143
 
144
+ > 请注意,运行上述命令会自动下载 RAGFlow 的开发版本 docker 镜像。如果你想下载并运行特定版本的 docker 镜像,请在 docker/.env 文件中找到 RAGFLOW_IMAGE 变量,将其改为对应版本。例如 `RAGFLOW_IMAGE=infiniflow/ragflow:v0.12.0-slim`,然后运行上述命令。
145
 
146
  > 核心镜像下载大小为 1 GB,可能需要一定时间拉取。请耐心等待。
147
 
docs/quickstart.mdx CHANGED
@@ -177,7 +177,7 @@ This section provides instructions on setting up the RAGFlow server on Linux. If
177
 
178
  3. Build the pre-built Docker images and start up the server:
179
 
180
- > Running the following commands automatically downloads the *dev* version RAGFlow Docker image. To download and run a specified Docker version, update `RAGFLOW_IMAGE` in **docker/.env** to the intended version, for example `RAGFLOW_IMAGE=infiniflow/ragflow:v0.12.0`, before running the following commands.
181
 
182
  ```bash
183
  $ cd ragflow/docker
 
177
 
178
  3. Build the pre-built Docker images and start up the server:
179
 
180
+ > Running the following commands automatically downloads the *slim-dev* version RAGFlow Docker image. To download and run a specified Docker version, update `RAGFLOW_IMAGE` in **docker/.env** to the intended version, for example `RAGFLOW_IMAGE=infiniflow/ragflow:v0.12.0-slim`, before running the following commands.
181
 
182
  ```bash
183
  $ cd ragflow/docker