jinhai-2012 commited on
Commit
d6e6e83
·
1 Parent(s): 487f4f4

Use slim image as the default (#2772)

Browse files

### What problem does this PR solve?

Use the slim docker image as the default.

### Type of change

- [x] Bug Fix (non-breaking change which fixes an issue)

---------

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. docker/.env +2 -2
README.md CHANGED
@@ -160,7 +160,7 @@ Try our demo at [https://demo.ragflow.io](https://demo.ragflow.io).
160
  $ docker compose up -d
161
  ```
162
 
163
- > The core image is about 9 GB in size and may take a while to load.
164
 
165
  4. Check the server status after having the server up and running:
166
 
 
160
  $ docker compose up -d
161
  ```
162
 
163
+ > The core image is about 1 GB in size and may take a while to load.
164
 
165
  4. Check the server status after having the server up and running:
166
 
README_ja.md CHANGED
@@ -143,7 +143,7 @@
143
 
144
  > 上記のコマンドを実行すると、RAGFlowの開発版dockerイメージが自動的にダウンロードされます。 特定のバージョンのDockerイメージをダウンロードして実行したい場合は、docker/.envファイルのRAGFLOW_IMAGE変数を見つけて、対応するバージョンに変更してください。 例えば、`RAGFLOW_IMAGE=infiniflow/ragflow:v0.12.0`として、上記のコマンドを実行してください。
145
 
146
- > コアイメージのサイズは約 9 GB で、ロードに時間がかかる場合があります。
147
 
148
  4. サーバーを立ち上げた後、サーバーの状態を確認する:
149
 
 
143
 
144
  > 上記のコマンドを実行すると、RAGFlowの開発版dockerイメージが自動的にダウンロードされます。 特定のバージョンのDockerイメージをダウンロードして実行したい場合は、docker/.envファイルのRAGFLOW_IMAGE変数を見つけて、対応するバージョンに変更してください。 例えば、`RAGFLOW_IMAGE=infiniflow/ragflow:v0.12.0`として、上記のコマンドを実行してください。
145
 
146
+ > コアイメージのサイズは約 1 GB で、ロードに時間がかかる場合があります。
147
 
148
  4. サーバーを立ち上げた後、サーバーの状態を確認する:
149
 
README_ko.md CHANGED
@@ -145,7 +145,7 @@
145
  $ docker compose up -d
146
  ```
147
 
148
- > 기본 이미지는 약 9GB 크기이며 로드하는 데 시간이 걸릴 수 있습니다.
149
 
150
 
151
  4. 서버가 시작된 후 서버 상태를 확인하세요:
 
145
  $ docker compose up -d
146
  ```
147
 
148
+ > 기본 이미지는 약 1GB 크기이며 로드하는 데 시간이 걸릴 수 있습니다.
149
 
150
 
151
  4. 서버가 시작된 후 서버 상태를 확인하세요:
README_zh.md CHANGED
@@ -143,7 +143,7 @@
143
 
144
  > 请注意,运行上述命令会自动下载 RAGFlow 的开发版本 docker 镜像。如果你想下载并运行特定版本的 docker 镜像,请在 docker/.env 文件中找到 RAGFLOW_IMAGE 变量,将其改为对应版本。例如 `RAGFLOW_IMAGE=infiniflow/ragflow:v0.12.0`,然后运行上述命令。
145
 
146
- > 核心镜像下载大小为 9 GB,可能需要一定时间拉取。请耐心等待。
147
 
148
  4. 服务器启动成功后再次确认服务器状态:
149
 
 
143
 
144
  > 请注意,运行上述命令会自动下载 RAGFlow 的开发版本 docker 镜像。如果你想下载并运行特定版本的 docker 镜像,请在 docker/.env 文件中找到 RAGFLOW_IMAGE 变量,将其改为对应版本。例如 `RAGFLOW_IMAGE=infiniflow/ragflow:v0.12.0`,然后运行上述命令。
145
 
146
+ > 核心镜像下载大小为 1 GB,可能需要一定时间拉取。请耐心等待。
147
 
148
  4. 服务器启动成功后再次确认服务器状态:
149
 
docker/.env CHANGED
@@ -33,9 +33,9 @@ REDIS_PASSWORD=infini_rag_flow
33
 
34
  SVR_HTTP_PORT=9380
35
 
36
- RAGFLOW_IMAGE=infiniflow/ragflow:dev
37
 
38
- # If inside mainland China, decomment either of the following hub.docker.com mirrors:
39
  # RAGFLOW_IMAGE=swr.cn-north-4.myhuaweicloud.com/infiniflow/ragflow:dev-slim
40
  # RAGFLOW_IMAGE=registry.cn-hangzhou.aliyuncs.com/infiniflow/ragflow:dev-slim
41
 
 
33
 
34
  SVR_HTTP_PORT=9380
35
 
36
+ RAGFLOW_IMAGE=infiniflow/ragflow:dev-slim
37
 
38
+ # If can't download RAGFlow docker image, try to uncomment either of the following hub.docker.com mirrors:
39
  # RAGFLOW_IMAGE=swr.cn-north-4.myhuaweicloud.com/infiniflow/ragflow:dev-slim
40
  # RAGFLOW_IMAGE=registry.cn-hangzhou.aliyuncs.com/infiniflow/ragflow:dev-slim
41