Yingfeng commited on
Commit
2964cd4
·
1 Parent(s): 94806ac

Update Docker .env (#3576)

Browse files

### What problem does this PR solve?


### Type of change

- [x] Documentation Update

Files changed (1) hide show
  1. docker/.env +10 -3
docker/.env CHANGED
@@ -1,5 +1,7 @@
1
  # The type of doc engine to use.
2
- # Supported values are `elasticsearch`, `infinity`.
 
 
3
  DOC_ENGINE=${DOC_ENGINE:-elasticsearch}
4
 
5
  # ------------------------------
@@ -20,7 +22,7 @@ ES_HOST=es01
20
  ES_PORT=1200
21
 
22
  # The password for Elasticsearch.
23
- # When updated, you must revise the `es.password` entry in service_conf.yaml accordingly.
24
  ELASTIC_PASSWORD=infini_rag_flow
25
 
26
  # The port used to expose the Kibana service to the host machine,
@@ -85,7 +87,7 @@ RAGFLOW_IMAGE=infiniflow/ragflow:dev-slim
85
  # RAGFLOW_IMAGE=infiniflow/ragflow:dev
86
  #
87
  # The Docker image of the dev edition includes:
88
- # - Embedded embedding models:
89
  # - BAAI/bge-large-zh-v1.5
90
  # - BAAI/bge-reranker-v2-m3
91
  # - maidalun1020/bce-embedding-base_v1
@@ -123,3 +125,8 @@ TIMEZONE='Asia/Shanghai'
123
  # Optimizations for MacOS
124
  # Uncomment the following line if your OS is MacOS:
125
  # MACOS=1
 
 
 
 
 
 
1
  # The type of doc engine to use.
2
+ # Available options:
3
+ # - `elasticsearch` (default)
4
+ # - `infinity` (https://github.com/infiniflow/infinity)
5
  DOC_ENGINE=${DOC_ENGINE:-elasticsearch}
6
 
7
  # ------------------------------
 
22
  ES_PORT=1200
23
 
24
  # The password for Elasticsearch.
25
+ # When updated, you must revise the `es.password` entry in service_conf.yaml accordingly.
26
  ELASTIC_PASSWORD=infini_rag_flow
27
 
28
  # The port used to expose the Kibana service to the host machine,
 
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
93
  # - maidalun1020/bce-embedding-base_v1
 
125
  # Optimizations for MacOS
126
  # Uncomment the following line if your OS is MacOS:
127
  # MACOS=1
128
+
129
+ # The maximum file size for each uploaded file, in bytes.
130
+ # You can uncomment this line and update the value if you wish to change 128M file size limit
131
+ # MAX_CONTENT_LENGTH=134217728
132
+