zhichyu commited on
Commit
281a904
·
1 Parent(s): 93e3725

Obsoleted dev and dev-slim (#3930)

Browse files

### What problem does this PR solve?

Obsoleted dev and dev-slim
### Type of change

- [x] Documentation Update

.github/workflows/tests.yml CHANGED
@@ -55,28 +55,29 @@ jobs:
55
  with:
56
  version: ">=0.8.2"
57
 
58
- - name: Build ragflow:dev-slim
59
  run: |
60
  RUNNER_WORKSPACE_PREFIX=${RUNNER_WORKSPACE_PREFIX:-$HOME}
61
  sudo docker pull ubuntu:22.04
62
- sudo docker build --progress=plain --build-arg LIGHTEN=1 --build-arg NEED_MIRROR=1 -f Dockerfile -t infiniflow/ragflow:dev-slim .
63
 
64
- - name: Build ragflow:dev
65
  run: |
66
- sudo docker build --progress=plain --build-arg NEED_MIRROR=1 -f Dockerfile -t infiniflow/ragflow:dev .
67
 
68
- - name: Start ragflow:dev-slim
69
  run: |
 
70
  sudo docker compose -f docker/docker-compose.yml up -d
71
 
72
- - name: Stop ragflow:dev-slim
73
  if: always() # always run this step even if previous steps failed
74
  run: |
75
  sudo docker compose -f docker/docker-compose.yml down -v
76
 
77
- - name: Start ragflow:dev
78
  run: |
79
- echo "RAGFLOW_IMAGE=infiniflow/ragflow:dev" >> docker/.env
80
  sudo docker compose -f docker/docker-compose.yml up -d
81
 
82
  - name: Run sdk tests against Elasticsearch
@@ -100,12 +101,12 @@ jobs:
100
  cd sdk/python && poetry install && source .venv/bin/activate && cd test/test_frontend_api && pytest -s --tb=short get_email.py test_dataset.py
101
 
102
 
103
- - name: Stop ragflow:dev
104
  if: always() # always run this step even if previous steps failed
105
  run: |
106
  sudo docker compose -f docker/docker-compose.yml down -v
107
 
108
- - name: Start ragflow:dev
109
  run: |
110
  sudo DOC_ENGINE=infinity docker compose -f docker/docker-compose.yml up -d
111
 
@@ -129,7 +130,7 @@ jobs:
129
  done
130
  cd sdk/python && poetry install && source .venv/bin/activate && cd test/test_frontend_api && pytest -s --tb=short get_email.py test_dataset.py
131
 
132
- - name: Stop ragflow:dev
133
  if: always() # always run this step even if previous steps failed
134
  run: |
135
  sudo DOC_ENGINE=infinity docker compose -f docker/docker-compose.yml down -v
 
55
  with:
56
  version: ">=0.8.2"
57
 
58
+ - name: Build ragflow:nightly-slim
59
  run: |
60
  RUNNER_WORKSPACE_PREFIX=${RUNNER_WORKSPACE_PREFIX:-$HOME}
61
  sudo docker pull ubuntu:22.04
62
+ sudo docker build --progress=plain --build-arg LIGHTEN=1 --build-arg NEED_MIRROR=1 -f Dockerfile -t infiniflow/ragflow:nightly-slim .
63
 
64
+ - name: Build ragflow:nightly
65
  run: |
66
+ sudo docker build --progress=plain --build-arg NEED_MIRROR=1 -f Dockerfile -t infiniflow/ragflow:nightly .
67
 
68
+ - name: Start ragflow:nightly-slim
69
  run: |
70
+ echo "RAGFLOW_IMAGE=infiniflow/ragflow:nightly-slim" >> docker/.env
71
  sudo docker compose -f docker/docker-compose.yml up -d
72
 
73
+ - name: Stop ragflow:nightly-slim
74
  if: always() # always run this step even if previous steps failed
75
  run: |
76
  sudo docker compose -f docker/docker-compose.yml down -v
77
 
78
+ - name: Start ragflow:nightly
79
  run: |
80
+ echo "RAGFLOW_IMAGE=infiniflow/ragflow:nightly" >> docker/.env
81
  sudo docker compose -f docker/docker-compose.yml up -d
82
 
83
  - name: Run sdk tests against Elasticsearch
 
101
  cd sdk/python && poetry install && source .venv/bin/activate && cd test/test_frontend_api && pytest -s --tb=short get_email.py test_dataset.py
102
 
103
 
104
+ - name: Stop ragflow:nightly
105
  if: always() # always run this step even if previous steps failed
106
  run: |
107
  sudo docker compose -f docker/docker-compose.yml down -v
108
 
109
+ - name: Start ragflow:nightly
110
  run: |
111
  sudo DOC_ENGINE=infinity docker compose -f docker/docker-compose.yml up -d
112
 
 
130
  done
131
  cd sdk/python && poetry install && source .venv/bin/activate && cd test/test_frontend_api && pytest -s --tb=short get_email.py test_dataset.py
132
 
133
+ - name: Stop ragflow:nightly
134
  if: always() # always run this step even if previous steps failed
135
  run: |
136
  sudo DOC_ENGINE=infinity docker compose -f docker/docker-compose.yml down -v
README.md CHANGED
@@ -165,29 +165,25 @@ releases! 🌟
165
  $ git clone https://github.com/infiniflow/ragflow.git
166
  ```
167
 
168
- 3. Build the pre-built Docker images and start up the server:
169
 
170
- > The command below downloads the dev version Docker image for RAGFlow slim (`dev-slim`). Note that RAGFlow slim
171
- Docker images do not include embedding models or Python libraries and hence are approximately 1GB in size.
172
 
173
  ```bash
174
  $ cd ragflow/docker
175
  $ docker compose -f docker-compose.yml up -d
176
  ```
177
 
178
- > - To download a RAGFlow slim Docker image of a specific version, update the `RAGFLOW_IMAGE` variable in *
179
- *docker/.env** to your desired version. For example, `RAGFLOW_IMAGE=infiniflow/ragflow:v0.14.1-slim`. After
180
- making this change, rerun the command above to initiate the download.
181
- > - To download the dev version of RAGFlow Docker image *including* embedding models and Python libraries, update the
182
- `RAGFLOW_IMAGE` variable in **docker/.env** to `RAGFLOW_IMAGE=infiniflow/ragflow:dev`. After making this change,
183
- rerun the command above to initiate the download.
184
- > - To download a specific version of RAGFlow Docker image *including* embedding models and Python libraries, update
185
- the `RAGFLOW_IMAGE` variable in **docker/.env** to your desired version. For example,
186
- `RAGFLOW_IMAGE=infiniflow/ragflow:v0.14.1`. After making this change, rerun the command above to initiate the
187
- download.
188
 
189
- > **NOTE:** A RAGFlow Docker image that includes embedding models and Python libraries is approximately 9GB in size
190
- and may take significantly longer time to load.
191
 
192
  4. Check the server status after having the server up and running:
193
 
@@ -267,12 +263,12 @@ RAGFlow uses Elasticsearch by default for storing full text and vectors. To swit
267
 
268
  ## 🔧 Build a Docker image without embedding models
269
 
270
- This image is approximately 1 GB in size and relies on external LLM and embedding services.
271
 
272
  ```bash
273
  git clone https://github.com/infiniflow/ragflow.git
274
  cd ragflow/
275
- docker build --build-arg LIGHTEN=1 -f Dockerfile -t infiniflow/ragflow:dev-slim .
276
  ```
277
 
278
  ## 🔧 Build a Docker image including embedding models
@@ -282,7 +278,7 @@ This image is approximately 9 GB in size. As it includes embedding models, it re
282
  ```bash
283
  git clone https://github.com/infiniflow/ragflow.git
284
  cd ragflow/
285
- docker build -f Dockerfile -t infiniflow/ragflow:dev .
286
  ```
287
 
288
  ## 🔨 Launch service from source for development
 
165
  $ git clone https://github.com/infiniflow/ragflow.git
166
  ```
167
 
168
+ 3. Start up the server using the pre-built Docker images:
169
 
170
+ > The command below downloads the v0.14.1 version Docker image for RAGFlow slim (`v0.14.1-slim`). Note that RAGFlow slim
171
+ Docker images do not include embedding models or Python libraries and hence are approximately 2 GB in size.
172
 
173
  ```bash
174
  $ cd ragflow/docker
175
  $ docker compose -f docker-compose.yml up -d
176
  ```
177
 
178
+ | RAGFLOW_IMAGE tag in docker/.env | size | Including embedding models and related Python packages? | comments |
179
+ | -------------------------------- | ----- | ------------------------------------------------------- | ---------------------- |
180
+ | v0.14.1 | ~9 GB | YES | stable release |
181
+ | v0.14.1-slim | ~2 GB | NO | stable release |
182
+ | v0.15.0-dev1 | ~9 GB | YES | unstable beta release |
183
+ | v0.15.0-dev1-slim | ~2 GB | NO | unstable beta release |
184
+ | nightly | ~9 GB | YES | unstable nightly build |
185
+ | nightly-slim | ~2 GB | NO | unstable nightly build |
 
 
186
 
 
 
187
 
188
  4. Check the server status after having the server up and running:
189
 
 
263
 
264
  ## 🔧 Build a Docker image without embedding models
265
 
266
+ This image is approximately 2 GB in size and relies on external LLM and embedding services.
267
 
268
  ```bash
269
  git clone https://github.com/infiniflow/ragflow.git
270
  cd ragflow/
271
+ docker build --build-arg LIGHTEN=1 -f Dockerfile -t infiniflow/ragflow:nightly-slim .
272
  ```
273
 
274
  ## 🔧 Build a Docker image including embedding models
 
278
  ```bash
279
  git clone https://github.com/infiniflow/ragflow.git
280
  cd ragflow/
281
+ docker build -f Dockerfile -t infiniflow/ragflow:nightly .
282
  ```
283
 
284
  ## 🔨 Launch service from source for development
README_id.md CHANGED
@@ -160,7 +160,7 @@ Coba demo kami di [https://demo.ragflow.io](https://demo.ragflow.io).
160
 
161
  3. Bangun image Docker pre-built dan jalankan server:
162
 
163
- > Perintah di bawah ini akan mengunduh versi dev dari Docker image RAGFlow slim (`dev-slim`). Image RAGFlow slim
164
  tidak termasuk model embedding atau library Python dan berukuran sekitar 1GB.
165
 
166
  ```bash
@@ -168,18 +168,16 @@ Coba demo kami di [https://demo.ragflow.io](https://demo.ragflow.io).
168
  $ docker compose -f docker-compose.yml up -d
169
  ```
170
 
171
- > - Untuk mengunduh versi tertentu dari image Docker RAGFlow slim, perbarui variabel `RAGFlow_IMAGE` di *
172
- *docker/.env** sesuai dengan versi yang diinginkan. Misalnya, `RAGFLOW_IMAGE=infiniflow/ragflow:v0.14.1-slim`.
173
- Setelah mengubah ini, jalankan ulang perintah di atas untuk memulai unduhan.
174
- > - Untuk mengunduh versi dev dari image Docker RAGFlow *termasuk* model embedding dan library Python, perbarui
175
- variabel `RAGFlow_IMAGE` di **docker/.env** menjadi `RAGFLOW_IMAGE=infiniflow/ragflow:dev`. Setelah mengubah ini,
176
- jalankan ulang perintah di atas untuk memulai unduhan.
177
- > - Untuk mengunduh versi tertentu dari image Docker RAGFlow *termasuk* model embedding dan library Python, perbarui
178
- variabel `RAGFlow_IMAGE` di **docker/.env** sesuai dengan versi yang diinginkan. Misalnya,
179
- `RAGFLOW_IMAGE=infiniflow/ragflow:v0.14.1`. Setelah mengubah ini, jalankan ulang perintah di atas untuk memulai unduhan.
180
 
181
- > **CATATAN:** Image Docker RAGFlow yang mencakup model embedding dan library Python berukuran sekitar 9GB
182
- dan mungkin memerlukan waktu lebih lama untuk dimuat.
183
 
184
  4. Periksa status server setelah server aktif dan berjalan:
185
 
@@ -242,12 +240,12 @@ Pembaruan konfigurasi ini memerlukan reboot semua kontainer agar efektif:
242
 
243
  ## 🔧 Membangun Docker Image tanpa Model Embedding
244
 
245
- Image ini berukuran sekitar 1 GB dan bergantung pada aplikasi LLM eksternal dan embedding.
246
 
247
  ```bash
248
  git clone https://github.com/infiniflow/ragflow.git
249
  cd ragflow/
250
- docker build --build-arg LIGHTEN=1 -f Dockerfile -t infiniflow/ragflow:dev-slim .
251
  ```
252
 
253
  ## 🔧 Membangun Docker Image Termasuk Model Embedding
@@ -257,7 +255,7 @@ Image ini berukuran sekitar 9 GB. Karena sudah termasuk model embedding, ia hany
257
  ```bash
258
  git clone https://github.com/infiniflow/ragflow.git
259
  cd ragflow/
260
- docker build -f Dockerfile -t infiniflow/ragflow:dev .
261
  ```
262
 
263
  ## 🔨 Menjalankan Aplikasi dari untuk Pengembangan
 
160
 
161
  3. Bangun image Docker pre-built dan jalankan server:
162
 
163
+ > Perintah di bawah ini akan mengunduh versi v0.14.1 dari Docker image RAGFlow slim (`v0.14.1-slim`). Image RAGFlow slim
164
  tidak termasuk model embedding atau library Python dan berukuran sekitar 1GB.
165
 
166
  ```bash
 
168
  $ docker compose -f docker-compose.yml up -d
169
  ```
170
 
171
+ | RAGFLOW_IMAGE tag in docker/.env | size | Including embedding models and related Python packages? | comments |
172
+ | -------------------------------- | ----- | ------------------------------------------------------- | ---------------------- |
173
+ | v0.14.1 | ~9 GB | YES | stable release |
174
+ | v0.14.1-slim | ~2 GB | NO | stable release |
175
+ | v0.15.0-dev1 | ~9 GB | YES | unstable beta release |
176
+ | v0.15.0-dev1-slim | ~2 GB | NO | unstable beta release |
177
+ | nightly | ~9 GB | YES | unstable nightly build |
178
+ | nightly-slim | ~2 GB | NO | unstable nightly build |
179
+
180
 
 
 
181
 
182
  4. Periksa status server setelah server aktif dan berjalan:
183
 
 
240
 
241
  ## 🔧 Membangun Docker Image tanpa Model Embedding
242
 
243
+ Image ini berukuran sekitar 2 GB dan bergantung pada aplikasi LLM eksternal dan embedding.
244
 
245
  ```bash
246
  git clone https://github.com/infiniflow/ragflow.git
247
  cd ragflow/
248
+ docker build --build-arg LIGHTEN=1 -f Dockerfile -t infiniflow/ragflow:nightly-slim .
249
  ```
250
 
251
  ## 🔧 Membangun Docker Image Termasuk Model Embedding
 
255
  ```bash
256
  git clone https://github.com/infiniflow/ragflow.git
257
  cd ragflow/
258
+ docker build -f Dockerfile -t infiniflow/ragflow:nightly .
259
  ```
260
 
261
  ## 🔨 Menjalankan Aplikasi dari untuk Pengembangan
README_ja.md CHANGED
@@ -141,18 +141,22 @@
141
 
142
  3. ビルド済みの Docker イメージをビルドし、サーバーを起動する:
143
 
144
- > 以下のコマンドは、RAGFlow slim(`dev-slim`)の開発版Dockerイメージをダウンロードします。RAGFlow slimのDockerイメージには、埋め込みモデルやPythonライブラリが含まれていないため、サイズは約1GBです。
145
 
146
  ```bash
147
  $ cd ragflow/docker
148
  $ docker compose -f docker-compose.yml up -d
149
  ```
150
 
151
- > - 特定のバージョンのRAGFlow slim Dockerイメージをダウンロードするには、**docker/.env**内の`RAGFlow_IMAGE`変数を希望のバージョンに更新します。例えば、`RAGFLOW_IMAGE=infiniflow/ragflow:v0.14.1`とします。この変更を行った後、上記のコマンドを再実行してダウンロードを開始してください。
152
- > - RAGFlowの埋め込みモデルとPythonライブラリを含む開発版Dockerイメージをダウンロードするには、**docker/.env**内の`RAGFlow_IMAGE`変数を`RAGFLOW_IMAGE=infiniflow/ragflow:dev`に更新します。この変更を行った後、上記のコマンドを再実行してダウンロードを開始してください。
153
- > - 特定のバージョンのRAGFlow Dockerイメージ(埋め込みモデルとPythonライブラリを含む)をダウンロードするには、**docker/.env**内の`RAGFlow_IMAGE`変数を希望のバージョンに更新します。例えば、`RAGFLOW_IMAGE=infiniflow/ragflow:v0.14.1`とします。この変更を行った後、上記のコマンドを再実行してダウンロードを開始してください。
154
-
155
- > **NOTE:** 埋め込みモデルとPythonライブラリを含むRAGFlow Dockerイメージのサイズは約9GBであり、読み込みにかなりの時間がかかる場合があります。
 
 
 
 
156
 
157
  4. サーバーを立ち上げた後、サーバーの状態を確認する:
158
 
@@ -228,7 +232,7 @@ RAGFlow はデフォルトで Elasticsearch を使用して全文とベクトル
228
  ```bash
229
  git clone https://github.com/infiniflow/ragflow.git
230
  cd ragflow/
231
- docker build --build-arg LIGHTEN=1 -f Dockerfile -t infiniflow/ragflow:dev-slim .
232
  ```
233
 
234
  ## 🔧 ソースコードをコンパイルしたDockerイメージ(埋め込みモデルを含む)
@@ -238,7 +242,7 @@ docker build --build-arg LIGHTEN=1 -f Dockerfile -t infiniflow/ragflow:dev-slim
238
  ```bash
239
  git clone https://github.com/infiniflow/ragflow.git
240
  cd ragflow/
241
- docker build -f Dockerfile -t infiniflow/ragflow:dev .
242
  ```
243
 
244
  ## 🔨 ソースコードからサービスを起動する方法
 
141
 
142
  3. ビルド済みの Docker イメージをビルドし、サーバーを起動する:
143
 
144
+ > 以下のコマンドは、RAGFlow slim(`v0.14.1-slim`)の開発版Dockerイメージをダウンロードします。RAGFlow slimのDockerイメージには、埋め込みモデルやPythonライブラリが含まれていないため、サイズは約1GBです。
145
 
146
  ```bash
147
  $ cd ragflow/docker
148
  $ docker compose -f docker-compose.yml up -d
149
  ```
150
 
151
+ | RAGFLOW_IMAGE tag in docker/.env | size | Including embedding models and related Python packages? | comments |
152
+ | -------------------------------- | ----- | ------------------------------------------------------- | ---------------------- |
153
+ | v0.14.1 | ~9 GB | YES | stable release |
154
+ | v0.14.1-slim | ~2 GB | NO | stable release |
155
+ | v0.15.0-dev1 | ~9 GB | YES | unstable beta release |
156
+ | v0.15.0-dev1-slim | ~2 GB | NO | unstable beta release |
157
+ | nightly | ~9 GB | YES | unstable nightly build |
158
+ | nightly-slim | ~2 GB | NO | unstable nightly build |
159
+
160
 
161
  4. サーバーを立ち上げた後、サーバーの状態を確認する:
162
 
 
232
  ```bash
233
  git clone https://github.com/infiniflow/ragflow.git
234
  cd ragflow/
235
+ docker build --build-arg LIGHTEN=1 -f Dockerfile -t infiniflow/ragflow:nightly-slim .
236
  ```
237
 
238
  ## 🔧 ソースコードをコンパイルしたDockerイメージ(埋め込みモデルを含む)
 
242
  ```bash
243
  git clone https://github.com/infiniflow/ragflow.git
244
  cd ragflow/
245
+ docker build -f Dockerfile -t infiniflow/ragflow:nightly .
246
  ```
247
 
248
  ## 🔨 ソースコードからサービスを起動する方法
README_ko.md CHANGED
@@ -145,18 +145,24 @@
145
 
146
  3. 미리 빌드된 Docker 이미지를 생성하고 서버를 시작하세요:
147
 
148
- > 아래의 명령은 RAGFlow slim(dev-slim)의 개발 버전 Docker 이미지를 다운로드합니다. RAGFlow slim Docker 이미지에는 임베딩 모델이나 Python 라이브러리가 포함되어 있지 않으므로 크기는 약 1GB입니다.
149
 
150
  ```bash
151
  $ cd ragflow/docker
152
  $ docker compose -f docker-compose.yml up -d
153
  ```
154
 
155
- > - 특정 버전의 RAGFlow slim Docker 이미지를 다운로드하려면, **docker/.env**에서 `RAGFlow_IMAGE` 변수를 원하는 버전으로 업데이트하세요. 예를 들어, `RAGFLOW_IMAGE=infiniflow/ragflow:v0.14.1-slim`으로 설정합니다. 이 변경을 완료한 후, 위의 명령을 다시 실행하여 다운로드를 시작하세요.
156
- > - RAGFlow의 임베딩 모델과 Python 라이브러리를 포함한 개발 버전 Docker 이미지를 다운로드하려면, **docker/.env**에서 `RAGFlow_IMAGE` 변수를 `RAGFLOW_IMAGE=infiniflow/ragflow:dev`로 업데이트하세요. 변경을 완료한 후, 위의 명령을 다시 실행하여 다운로드를 시작하세요.
157
- > - 특정 버전의 RAGFlow Docker 이미지를 임베딩 모델과 Python 라이브러리를 포함하여 다운로드하려면, **docker/.env**에서 `RAGFlow_IMAGE` 변수를 원하는 버전으로 업데이트하세요. 예를 들어, `RAGFLOW_IMAGE=infiniflow/ragflow:v0.14.1` 로 설정합니다. 이 변경을 완료한 후, 위의 명령을 다시 실행하여 다운로드를 시작하세요.
158
-
159
- > **NOTE:** 임베딩 모델과 Python 라이브러리를 포함한 RAGFlow Docker 이미지의 크기는 약 9GB이며, 로드하는 데 상당히 오랜 시간이 걸릴 수 있습니다.
 
 
 
 
 
 
160
 
161
 
162
  4. 서버가 시작된 후 서버 상태를 확인하세요:
@@ -230,7 +236,7 @@ RAGFlow 는 기본적으로 Elasticsearch 를 사용하여 전체 텍스트 및
230
  ```bash
231
  git clone https://github.com/infiniflow/ragflow.git
232
  cd ragflow/
233
- docker build --build-arg LIGHTEN=1 -f Dockerfile -t infiniflow/ragflow:dev-slim .
234
  ```
235
 
236
  ## 🔧 소스 코드로 Docker 이미지를 컴파일합니다(임베딩 모델 포함)
@@ -240,7 +246,7 @@ docker build --build-arg LIGHTEN=1 -f Dockerfile -t infiniflow/ragflow:dev-slim
240
  ```bash
241
  git clone https://github.com/infiniflow/ragflow.git
242
  cd ragflow/
243
- docker build -f Dockerfile -t infiniflow/ragflow:dev .
244
  ```
245
 
246
  ## 🔨 소스 코드로 서비스를 시작합니다.
 
145
 
146
  3. 미리 빌드된 Docker 이미지를 생성하고 서버를 시작하세요:
147
 
148
+ > 아래의 명령은 RAGFlow slim(v0.14.1-slim)의 개발 버전 Docker 이미지를 다운로드합니다. RAGFlow slim Docker 이미지에는 임베딩 모델이나 Python 라이브러리가 포함되어 있지 않으므로 크기는 약 1GB입니다.
149
 
150
  ```bash
151
  $ cd ragflow/docker
152
  $ docker compose -f docker-compose.yml up -d
153
  ```
154
 
155
+
156
+ | RAGFLOW_IMAGE tag in docker/.env | size | Including embedding models and related Python packages? | comments |
157
+ | -------------------------------- | ----- | ------------------------------------------------------- | ---------------------- |
158
+ | v0.14.1 | ~9 GB | YES | stable release |
159
+ | v0.14.1-slim | ~2 GB | NO | stable release |
160
+ | v0.15.0-dev1 | ~9 GB | YES | unstable beta release |
161
+ | v0.15.0-dev1-slim | ~2 GB | NO | unstable beta release |
162
+ | nightly | ~9 GB | YES | unstable nightly build |
163
+ | nightly-slim | ~2 GB | NO | unstable nightly build |
164
+
165
+
166
 
167
 
168
  4. 서버가 시작된 후 서버 상태를 확인하세요:
 
236
  ```bash
237
  git clone https://github.com/infiniflow/ragflow.git
238
  cd ragflow/
239
+ docker build --build-arg LIGHTEN=1 -f Dockerfile -t infiniflow/ragflow:nightly-slim .
240
  ```
241
 
242
  ## 🔧 소스 코드로 Docker 이미지를 컴파일합니다(임베딩 모델 포함)
 
246
  ```bash
247
  git clone https://github.com/infiniflow/ragflow.git
248
  cd ragflow/
249
+ docker build -f Dockerfile -t infiniflow/ragflow:nightly .
250
  ```
251
 
252
  ## 🔨 소스 코드로 서비스를 시작합니다.
README_zh.md CHANGED
@@ -142,18 +142,23 @@
142
 
143
  3. 进入 **docker** 文件夹,利用提前编译好的 Docker 镜像启动服务器:
144
 
145
- > 运行以下命令会自动下载 dev 版的 RAGFlow slim Docker 镜像(`dev-slim`),该镜像并不包含 embedding 模型以及一些 Python 库,因此镜像大小约 1GB。
146
 
147
  ```bash
148
  $ cd ragflow/docker
149
  $ docker compose -f docker-compose.yml up -d
150
  ```
151
 
152
- > - 如果你想下载并运行特定版本的 RAGFlow slim Docker 镜像,请在 **docker/.env** 文件中找到 `RAGFLOW_IMAGE` 变量,将其改为对应版本。例如 `RAGFLOW_IMAGE=infiniflow/ragflow:v0.14.1-slim`,然后再运行上述命令。
153
- > - 如果您想安装内置 embedding 模型和 Python 库的 dev 版本的 Docker 镜像,需要将 **docker/.env** 文件中的 `RAGFLOW_IMAGE` 变量修改为: `RAGFLOW_IMAGE=infiniflow/ragflow:dev`。
154
- > - 如果您想安装内置 embedding 模型和 Python 库的指定版本的 RAGFlow Docker 镜像,需要将 **docker/.env** 文件中的 `RAGFLOW_IMAGE` 变量修改为: `RAGFLOW_IMAGE=infiniflow/ragflow:v0.14.1`。修改后,再运行上面的命令。
155
- > **注意:** 安装内置 embedding 模型和 Python 库的指定版本的 RAGFlow Docker 镜像大小约 9 GB,可能需要更长时间下载,请耐心等待。
156
-
 
 
 
 
 
157
  4. 服务器启动成功后再次确认服务器状态:
158
 
159
  ```bash
@@ -230,12 +235,12 @@ RAGFlow 默认使用 Elasticsearch 存储文本和向量数据. 如果要切换
230
 
231
  ## 🔧 源码编译 Docker 镜像(不含 embedding 模型)
232
 
233
- 本 Docker 镜像大小约 1 GB 左右并且依赖外部的大模型和 embedding 服务。
234
 
235
  ```bash
236
  git clone https://github.com/infiniflow/ragflow.git
237
  cd ragflow/
238
- docker build --build-arg LIGHTEN=1 --build-arg NEED_MIRROR=1 -f Dockerfile -t infiniflow/ragflow:dev-slim .
239
  ```
240
 
241
  ## 🔧 源码编译 Docker 镜像(包含 embedding 模型)
@@ -245,7 +250,7 @@ docker build --build-arg LIGHTEN=1 --build-arg NEED_MIRROR=1 -f Dockerfile -t in
245
  ```bash
246
  git clone https://github.com/infiniflow/ragflow.git
247
  cd ragflow/
248
- docker build --build-arg NEED_MIRROR=1 -f Dockerfile -t infiniflow/ragflow:dev .
249
  ```
250
 
251
  ## 🔨 以源代码启动服务
 
142
 
143
  3. 进入 **docker** 文件夹,利用提前编译好的 Docker 镜像启动服务器:
144
 
145
+ > 运行以下命令会自动下载 v0.14.1 版的 RAGFlow slim Docker 镜像(`v0.14.1-slim`),该镜像并不包含 embedding 模型以及一些 Python 库,因此镜像大小约 1GB。
146
 
147
  ```bash
148
  $ cd ragflow/docker
149
  $ docker compose -f docker-compose.yml up -d
150
  ```
151
 
152
+ | RAGFLOW_IMAGE tag in docker/.env | 尺寸 | 内置 embedding 模型和相关 Python 库? | 描述 |
153
+ | -------------------------------- | ----- | ------------------------------------------------------- | ---------------------- |
154
+ | v0.14.1 | ~9 GB | YES | stable release |
155
+ | v0.14.1-slim | ~2 GB | NO | stable release |
156
+ | v0.15.0-dev1 | ~9 GB | YES | unstable beta release |
157
+ | v0.15.0-dev1-slim | ~2 GB | NO | unstable beta release |
158
+ | nightly | ~9 GB | YES | unstable nightly build |
159
+ | nightly-slim | ~2 GB | NO | unstable nightly build |
160
+
161
+
162
  4. 服务器启动成功后再次确认服务器状态:
163
 
164
  ```bash
 
235
 
236
  ## 🔧 源码编译 Docker 镜像(不含 embedding 模型)
237
 
238
+ 本 Docker 镜像大小约 2 GB 左右并且依赖外部的大模型和 embedding 服务。
239
 
240
  ```bash
241
  git clone https://github.com/infiniflow/ragflow.git
242
  cd ragflow/
243
+ docker build --build-arg LIGHTEN=1 --build-arg NEED_MIRROR=1 -f Dockerfile -t infiniflow/ragflow:nightly-slim .
244
  ```
245
 
246
  ## 🔧 源码编译 Docker 镜像(包含 embedding 模型)
 
250
  ```bash
251
  git clone https://github.com/infiniflow/ragflow.git
252
  cd ragflow/
253
+ docker build --build-arg NEED_MIRROR=1 -f Dockerfile -t infiniflow/ragflow:nightly .
254
  ```
255
 
256
  ## 🔨 以源代码启动服务
docker/.env CHANGED
@@ -80,13 +80,13 @@ REDIS_PASSWORD=infini_rag_flow
80
  SVR_HTTP_PORT=9380
81
 
82
  # The RAGFlow Docker image to download.
83
- # Defaults to the dev-slim edition, which is the RAGFlow Docker image without embedding models.
84
- RAGFLOW_IMAGE=infiniflow/ragflow:dev
85
  #
86
  # To download the RAGFlow Docker image with embedding models, uncomment the following line instead:
87
- # RAGFLOW_IMAGE=infiniflow/ragflow:dev
88
  #
89
- # The Docker image of the dev edition includes:
90
  # - Built-in embedding models:
91
  # - BAAI/bge-large-zh-v1.5
92
  # - BAAI/bge-reranker-v2-m3
@@ -107,13 +107,13 @@ RAGFLOW_IMAGE=infiniflow/ragflow:dev
107
 
108
  # If you cannot download the RAGFlow Docker image:
109
  #
110
- # - For the `dev-slim` edition, uncomment either of the following:
111
- # RAGFLOW_IMAGE=swr.cn-north-4.myhuaweicloud.com/infiniflow/ragflow:dev-slim
112
- # RAGFLOW_IMAGE=registry.cn-hangzhou.aliyuncs.com/infiniflow/ragflow:dev-slim
113
  #
114
- # - For the `dev` edition, uncomment either of the following:
115
- # RAGFLOW_IMAGE=swr.cn-north-4.myhuaweicloud.com/infiniflow/ragflow:dev
116
- # RAGFLOW_IMAGE=registry.cn-hangzhou.aliyuncs.com/infiniflow/ragflow:dev
117
 
118
  # The local time zone.
119
  TIMEZONE='Asia/Shanghai'
 
80
  SVR_HTTP_PORT=9380
81
 
82
  # The RAGFlow Docker image to download.
83
+ # Defaults to the v0.14.1-slim edition, which is the RAGFlow Docker image without embedding models.
84
+ RAGFLOW_IMAGE=infiniflow/ragflow:v0.14.1-slim
85
  #
86
  # To download the RAGFlow Docker image with embedding models, uncomment the following line instead:
87
+ # RAGFLOW_IMAGE=infiniflow/ragflow:v0.14.1
88
  #
89
+ # The Docker image of the v0.14.1 edition includes:
90
  # - Built-in embedding models:
91
  # - BAAI/bge-large-zh-v1.5
92
  # - BAAI/bge-reranker-v2-m3
 
107
 
108
  # If you cannot download the RAGFlow Docker image:
109
  #
110
+ # - For the `nightly-slim` edition, uncomment either of the following:
111
+ # RAGFLOW_IMAGE=swr.cn-north-4.myhuaweicloud.com/infiniflow/ragflow:nightly-slim
112
+ # RAGFLOW_IMAGE=registry.cn-hangzhou.aliyuncs.com/infiniflow/ragflow:nightly-slim
113
  #
114
+ # - For the `nightly` edition, uncomment either of the following:
115
+ # RAGFLOW_IMAGE=swr.cn-north-4.myhuaweicloud.com/infiniflow/ragflow:nightly
116
+ # RAGFLOW_IMAGE=registry.cn-hangzhou.aliyuncs.com/infiniflow/ragflow:nightly
117
 
118
  # The local time zone.
119
  TIMEZONE='Asia/Shanghai'
docker/README.md CHANGED
@@ -75,8 +75,8 @@ The [.env](./.env) file contains important environment variables for Docker.
75
  - `RAGFLOW-IMAGE`
76
  The Docker image edition. Available editions:
77
 
78
- - `infiniflow/ragflow:dev-slim` (default): The RAGFlow Docker image without embedding models.
79
- - `infiniflow/ragflow:dev`: The RAGFlow Docker image with embedding models including:
80
  - Built-in embedding models:
81
  - `BAAI/bge-large-zh-v1.5`
82
  - `BAAI/bge-reranker-v2-m3`
@@ -95,12 +95,12 @@ The [.env](./.env) file contains important environment variables for Docker.
95
  > [!TIP]
96
  > If you cannot download the RAGFlow Docker image, try the following mirrors.
97
  >
98
- > - For the `dev-slim` edition:
99
- > - `RAGFLOW_IMAGE=swr.cn-north-4.myhuaweicloud.com/infiniflow/ragflow:dev-slim` or,
100
- > - `RAGFLOW_IMAGE=registry.cn-hangzhou.aliyuncs.com/infiniflow/ragflow:dev-slim`.
101
- > - For the `dev` edition:
102
- > - `RAGFLOW_IMAGE=swr.cn-north-4.myhuaweicloud.com/infiniflow/ragflow:dev` or,
103
- > - `RAGFLOW_IMAGE=registry.cn-hangzhou.aliyuncs.com/infiniflow/ragflow:dev`.
104
 
105
  ### Timezone
106
 
 
75
  - `RAGFLOW-IMAGE`
76
  The Docker image edition. Available editions:
77
 
78
+ - `infiniflow/ragflow:v0.14.1-slim` (default): The RAGFlow Docker image without embedding models.
79
+ - `infiniflow/ragflow:v0.14.1`: The RAGFlow Docker image with embedding models including:
80
  - Built-in embedding models:
81
  - `BAAI/bge-large-zh-v1.5`
82
  - `BAAI/bge-reranker-v2-m3`
 
95
  > [!TIP]
96
  > If you cannot download the RAGFlow Docker image, try the following mirrors.
97
  >
98
+ > - For the `nightly-slim` edition:
99
+ > - `RAGFLOW_IMAGE=swr.cn-north-4.myhuaweicloud.com/infiniflow/ragflow:nightly-slim` or,
100
+ > - `RAGFLOW_IMAGE=registry.cn-hangzhou.aliyuncs.com/infiniflow/ragflow:nightly-slim`.
101
+ > - For the `nightly` edition:
102
+ > - `RAGFLOW_IMAGE=swr.cn-north-4.myhuaweicloud.com/infiniflow/ragflow:nightly` or,
103
+ > - `RAGFLOW_IMAGE=registry.cn-hangzhou.aliyuncs.com/infiniflow/ragflow:nightly`.
104
 
105
  ### Timezone
106
 
docs/configurations.md CHANGED
@@ -93,8 +93,8 @@ The [.env](https://github.com/infiniflow/ragflow/blob/main/docker/.env) file con
93
  - `RAGFLOW-IMAGE`
94
  The Docker image edition. Available editions:
95
 
96
- - `infiniflow/ragflow:dev-slim` (default): The RAGFlow Docker image without embedding models.
97
- - `infiniflow/ragflow:dev`: The RAGFlow Docker image with embedding models including:
98
  - Built-in embedding models:
99
  - `BAAI/bge-large-zh-v1.5`
100
  - `BAAI/bge-reranker-v2-m3`
@@ -113,12 +113,12 @@ The [.env](https://github.com/infiniflow/ragflow/blob/main/docker/.env) file con
113
  :::tip NOTE
114
  If you cannot download the RAGFlow Docker image, try the following mirrors.
115
 
116
- - For the `dev-slim` edition:
117
- - `RAGFLOW_IMAGE=swr.cn-north-4.myhuaweicloud.com/infiniflow/ragflow:dev-slim` or,
118
- - `RAGFLOW_IMAGE=registry.cn-hangzhou.aliyuncs.com/infiniflow/ragflow:dev-slim`.
119
- - For the `dev` edition:
120
- - `RAGFLOW_IMAGE=swr.cn-north-4.myhuaweicloud.com/infiniflow/ragflow:dev` or,
121
- - `RAGFLOW_IMAGE=registry.cn-hangzhou.aliyuncs.com/infiniflow/ragflow:dev`.
122
  :::
123
 
124
  ### Timezone
 
93
  - `RAGFLOW-IMAGE`
94
  The Docker image edition. Available editions:
95
 
96
+ - `infiniflow/ragflow:v0.14.1-slim` (default): The RAGFlow Docker image without embedding models.
97
+ - `infiniflow/ragflow:v0.14.1`: The RAGFlow Docker image with embedding models including:
98
  - Built-in embedding models:
99
  - `BAAI/bge-large-zh-v1.5`
100
  - `BAAI/bge-reranker-v2-m3`
 
113
  :::tip NOTE
114
  If you cannot download the RAGFlow Docker image, try the following mirrors.
115
 
116
+ - For the `nightly-slim` edition:
117
+ - `RAGFLOW_IMAGE=swr.cn-north-4.myhuaweicloud.com/infiniflow/ragflow:nightly-slim` or,
118
+ - `RAGFLOW_IMAGE=registry.cn-hangzhou.aliyuncs.com/infiniflow/ragflow:nightly-slim`.
119
+ - For the `nightly` edition:
120
+ - `RAGFLOW_IMAGE=swr.cn-north-4.myhuaweicloud.com/infiniflow/ragflow:nightly` or,
121
+ - `RAGFLOW_IMAGE=registry.cn-hangzhou.aliyuncs.com/infiniflow/ragflow:nightly`.
122
  :::
123
 
124
  ### Timezone
docs/guides/develop/build_docker_image.mdx CHANGED
@@ -31,7 +31,7 @@ A guide explaining how to build a RAGFlow Docker image from its source code. By
31
  ]}>
32
  <TabItem value="without">
33
 
34
- This image is approximately 1 GB in size and relies on external LLM and embedding services.
35
 
36
  :::tip NOTE
37
  While we also test RAGFlow on ARM64 platforms, we do not plan to maintain RAGFlow Docker images for ARM. However, you can build an image yourself on a `linux/arm64` or `darwin/arm64` host machine as well.
@@ -40,7 +40,7 @@ While we also test RAGFlow on ARM64 platforms, we do not plan to maintain RAGFlo
40
  ```bash
41
  git clone https://github.com/infiniflow/ragflow.git
42
  cd ragflow/
43
- docker build --build-arg LIGHTEN=1 -f Dockerfile -t infiniflow/ragflow:dev-slim .
44
  ```
45
 
46
 
@@ -56,7 +56,7 @@ While we also test RAGFlow on ARM64 platforms, we do not plan to maintain RAGFlo
56
  ```bash
57
  git clone https://github.com/infiniflow/ragflow.git
58
  cd ragflow/
59
- docker build -f Dockerfile -t infiniflow/ragflow:dev .
60
  ```
61
 
62
  </TabItem>
 
31
  ]}>
32
  <TabItem value="without">
33
 
34
+ This image is approximately 2 GB in size and relies on external LLM and embedding services.
35
 
36
  :::tip NOTE
37
  While we also test RAGFlow on ARM64 platforms, we do not plan to maintain RAGFlow Docker images for ARM. However, you can build an image yourself on a `linux/arm64` or `darwin/arm64` host machine as well.
 
40
  ```bash
41
  git clone https://github.com/infiniflow/ragflow.git
42
  cd ragflow/
43
+ docker build --build-arg LIGHTEN=1 -f Dockerfile -t infiniflow/ragflow:nightly-slim .
44
  ```
45
 
46
 
 
56
  ```bash
57
  git clone https://github.com/infiniflow/ragflow.git
58
  cd ragflow/
59
+ docker build -f Dockerfile -t infiniflow/ragflow:nightly .
60
  ```
61
 
62
  </TabItem>
docs/guides/upgrade_ragflow.mdx CHANGED
@@ -7,11 +7,11 @@ slug: /upgrade_ragflow
7
  import Tabs from '@theme/Tabs';
8
  import TabItem from '@theme/TabItem';
9
 
10
- Upgrade RAGFlow to `dev-slim`/`dev` or the latest, published release.
11
 
12
- ## Upgrade RAGFlow to `dev-slim`/`dev`, the most recent, tested Docker image
13
 
14
- `dev-slim` refers to the RAGFlow Docker image *without* embedding models, while `dev` refers to the RAGFlow Docker image with embedding models. For details on their differences, see [ragflow/docker/.env](https://github.com/infiniflow/ragflow/blob/main/docker/.env).
15
 
16
  To upgrade RAGFlow, you must upgrade **both** your code **and** your Docker image:
17
 
@@ -24,22 +24,22 @@ To upgrade RAGFlow, you must upgrade **both** your code **and** your Docker imag
24
  2. Update **ragflow/docker/.env**:
25
 
26
  <Tabs
27
- defaultValue="dev-slim"
28
  values={[
29
- {label: 'dev-slim', value: 'dev-slim'},
30
- {label: 'dev', value: 'dev'},
31
  ]}>
32
- <TabItem value="dev-slim">
33
 
34
  ```bash
35
- RAGFLOW_IMAGE=infiniflow/ragflow:dev-slim
36
  ```
37
 
38
  </TabItem>
39
- <TabItem value="dev">
40
 
41
  ```bash
42
- RAGFLOW_IMAGE=infiniflow/ragflow:dev
43
  ```
44
 
45
  </TabItem>
@@ -65,7 +65,7 @@ To upgrade RAGFlow, you must upgrade **both** your code **and** your Docker imag
65
  2. Switch to the latest, officially published release, e.g., `v0.14.1`:
66
 
67
  ```bash
68
- git checkout v0.14.1
69
  ```
70
 
71
  3. Update **ragflow/docker/.env** as follows:
 
7
  import Tabs from '@theme/Tabs';
8
  import TabItem from '@theme/TabItem';
9
 
10
+ Upgrade RAGFlow to `nightly-slim`/`nightly` or the latest, published release.
11
 
12
+ ## Upgrade RAGFlow to `nightly-slim`/`nightly`, the most recent, tested Docker image
13
 
14
+ `nightly-slim` refers to the RAGFlow Docker image *without* embedding models, while `nightly` refers to the RAGFlow Docker image with embedding models. For details on their differences, see [ragflow/docker/.env](https://github.com/infiniflow/ragflow/blob/main/docker/.env).
15
 
16
  To upgrade RAGFlow, you must upgrade **both** your code **and** your Docker image:
17
 
 
24
  2. Update **ragflow/docker/.env**:
25
 
26
  <Tabs
27
+ defaultValue="nightly-slim"
28
  values={[
29
+ {label: 'nightly-slim', value: 'nightly-slim'},
30
+ {label: 'nightly', value: 'nightly'},
31
  ]}>
32
+ <TabItem value="nightly-slim">
33
 
34
  ```bash
35
+ RAGFLOW_IMAGE=infiniflow/ragflow:nightly-slim
36
  ```
37
 
38
  </TabItem>
39
+ <TabItem value="nightly">
40
 
41
  ```bash
42
+ RAGFLOW_IMAGE=infiniflow/ragflow:nightly
43
  ```
44
 
45
  </TabItem>
 
65
  2. Switch to the latest, officially published release, e.g., `v0.14.1`:
66
 
67
  ```bash
68
+ git checkout -f v0.14.1
69
  ```
70
 
71
  3. Update **ragflow/docker/.env** as follows:
docs/quickstart.mdx CHANGED
@@ -177,20 +177,27 @@ This section provides instructions on setting up the RAGFlow server on Linux. If
177
 
178
  ```bash
179
  $ git clone https://github.com/infiniflow/ragflow.git
 
 
180
  ```
181
 
182
- 3. Build the pre-built Docker images and start up the server:
183
 
184
- > The command below downloads the dev version Docker image for RAGFlow slim (`dev-slim`). Note that RAGFlow slim Docker images do not include embedding models or Python libraries and hence are approximately 1GB in size.
185
 
186
  ```bash
187
- $ cd ragflow/docker
188
- $ docker compose -f docker-compose.yml up -d
189
  ```
190
 
191
- > - To download a RAGFlow slim Docker image of a specific version, update the `RAGFlOW_IMAGE` variable in **docker/.env** to your desired version. For example, `RAGFLOW_IMAGE=infiniflow/ragflow:v0.14.1-slim`. After making this change, rerun the command above to initiate the download.
192
- > - To download the dev version of RAGFlow Docker image *including* embedding models and Python libraries, update the `RAGFlOW_IMAGE` variable in **docker/.env** to `RAGFLOW_IMAGE=infiniflow/ragflow:dev`. After making this change, rerun the command above to initiate the download.
193
- > - To download a specific version of RAGFlow Docker image *including* embedding models and Python libraries, update the `RAGFlOW_IMAGE` variable in **docker/.env** to your desired version. For example, `RAGFLOW_IMAGE=infiniflow/ragflow:v0.14.1`. After making this change, rerun the command above to initiate the download.
 
 
 
 
 
 
194
 
195
  :::tip NOTE
196
  A RAGFlow Docker image that includes embedding models and Python libraries is approximately 9GB in size and may take significantly longer time to load.
 
177
 
178
  ```bash
179
  $ git clone https://github.com/infiniflow/ragflow.git
180
+ $ cd ragflow
181
+ $ git checkout -f v0.14.1
182
  ```
183
 
184
+ 3. Use the pre-built Docker images and start up the server:
185
 
186
+ > The command below downloads the v0.14.1 version Docker image for RAGFlow slim (`v0.14.1-slim`). Note that RAGFlow slim Docker images do not include embedding models or Python libraries and hence are approximately 2 GB in size.
187
 
188
  ```bash
189
+ $ docker compose -f docker/docker-compose.yml up -d
 
190
  ```
191
 
192
+ | RAGFLOW_IMAGE tag in docker/.env | size | Including embedding models and related Python packages? | comments |
193
+ | -------------------------------- | ----- | ------------------------------------------------------- | ---------------------- |
194
+ | v0.14.1 | ~9 GB | YES | stable release |
195
+ | v0.14.1-slim | ~2 GB | NO | stable release |
196
+ | v0.15.0-dev1 | ~9 GB | YES | unstable beta release |
197
+ | v0.15.0-dev1-slim | ~2 GB | NO | unstable beta release |
198
+ | nightly | ~9 GB | YES | unstable nightly build |
199
+ | nightly-slim | ~2 GB | NO | unstable nightly build |
200
+
201
 
202
  :::tip NOTE
203
  A RAGFlow Docker image that includes embedding models and Python libraries is approximately 9GB in size and may take significantly longer time to load.
docs/references/faq.md CHANGED
@@ -42,10 +42,10 @@ We officially support x86 CPU and nvidia GPU. While we also test RAGFlow on ARM6
42
 
43
  ### Which embedding models can be deployed locally?
44
 
45
- RAGFlow offers two Docker image editions, `dev-slim` and `dev`:
46
 
47
- - `infiniflow/ragflow:dev-slim` (default): The RAGFlow Docker image without embedding models.
48
- - `infiniflow/ragflow:dev`: The RAGFlow Docker image with embedding models including:
49
  - Built-in embedding models:
50
  - `BAAI/bge-large-zh-v1.5`
51
  - `BAAI/bge-reranker-v2-m3`
 
42
 
43
  ### Which embedding models can be deployed locally?
44
 
45
+ RAGFlow offers two Docker image editions, `v0.14.1-slim` and `v0.14.1`:
46
 
47
+ - `infiniflow/ragflow:v0.14.1-slim` (default): The RAGFlow Docker image without embedding models.
48
+ - `infiniflow/ragflow:v0.14.1`: The RAGFlow Docker image with embedding models including:
49
  - Built-in embedding models:
50
  - `BAAI/bge-large-zh-v1.5`
51
  - `BAAI/bge-reranker-v2-m3`
docs/release_notes.md CHANGED
@@ -102,11 +102,11 @@ Released on September 30, 2024.
102
 
103
  As of this release, RAGFlow offers slim editions of its Docker images to improve the experience for users with limited Internet access. A slim edition of RAGFlow's Docker image does not include built-in BGE/BCE embedding models and has a size of about 1GB; a full edition of RAGFlow is approximately 9GB and includes both built-in embedding models and embedding models that will be downloaded once you select them in the RAGFlow UI.
104
 
105
- The default Docker image edition is `dev-slim`. The following list clarifies the differences between various editions:
106
 
107
- - `dev-slim`: The slim edition of the most recent tested Docker image.
108
  - `v0.12.0-slim`: The slim edition of the most recent **officially released** Docker image.
109
- - `dev`: The full edition of the most recent tested Docker image.
110
  - `v0.12.0`: The full edition of the most recent **officially released** Docker image.
111
 
112
  See [Upgrade RAGFlow](https://ragflow.io/docs/dev/upgrade_ragflow) for instructions on upgrading.
 
102
 
103
  As of this release, RAGFlow offers slim editions of its Docker images to improve the experience for users with limited Internet access. A slim edition of RAGFlow's Docker image does not include built-in BGE/BCE embedding models and has a size of about 1GB; a full edition of RAGFlow is approximately 9GB and includes both built-in embedding models and embedding models that will be downloaded once you select them in the RAGFlow UI.
104
 
105
+ The default Docker image edition is `nightly-slim`. The following list clarifies the differences between various editions:
106
 
107
+ - `nightly-slim`: The slim edition of the most recent tested Docker image.
108
  - `v0.12.0-slim`: The slim edition of the most recent **officially released** Docker image.
109
+ - `nightly`: The full edition of the most recent tested Docker image.
110
  - `v0.12.0`: The full edition of the most recent **officially released** Docker image.
111
 
112
  See [Upgrade RAGFlow](https://ragflow.io/docs/dev/upgrade_ragflow) for instructions on upgrading.
helm/values.yaml CHANGED
@@ -27,13 +27,13 @@ env:
27
  REDIS_PASSWORD: infini_rag_flow_helm
28
 
29
  # The RAGFlow Docker image to download.
30
- # Defaults to the dev-slim edition, which is the RAGFlow Docker image without embedding models.
31
- RAGFLOW_IMAGE: infiniflow/ragflow:dev-slim
32
  #
33
  # To download the RAGFlow Docker image with embedding models, uncomment the following line instead:
34
- # RAGFLOW_IMAGE=infiniflow/ragflow:dev
35
  #
36
- # The Docker image of the dev edition includes:
37
  # - Built-in embedding models:
38
  # - BAAI/bge-large-zh-v1.5
39
  # - BAAI/bge-reranker-v2-m3
 
27
  REDIS_PASSWORD: infini_rag_flow_helm
28
 
29
  # The RAGFlow Docker image to download.
30
+ # Defaults to the v0.14.1-slim edition, which is the RAGFlow Docker image without embedding models.
31
+ RAGFLOW_IMAGE: infiniflow/ragflow:v0.14.1-slim
32
  #
33
  # To download the RAGFlow Docker image with embedding models, uncomment the following line instead:
34
+ # RAGFLOW_IMAGE=infiniflow/ragflow:v0.14.1
35
  #
36
+ # The Docker image of the v0.14.1 edition includes:
37
  # - Built-in embedding models:
38
  # - BAAI/bge-large-zh-v1.5
39
  # - BAAI/bge-reranker-v2-m3