KevinHuSh commited on
Commit
61ec69c
·
1 Parent(s): 8887e47

Create .env

Browse files
Files changed (1) hide show
  1. docker/.env +30 -0
docker/.env ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Version of Elastic products
2
+ STACK_VERSION=8.11.3
3
+
4
+ # Set the cluster name
5
+ CLUSTER_NAME=rag_flow
6
+
7
+ # Port to expose Elasticsearch HTTP API to the host
8
+ ES_PORT=1200
9
+
10
+ # Port to expose Kibana to the host
11
+ KIBANA_PORT=6601
12
+
13
+ # Increase or decrease based on the available host memory (in bytes)
14
+ MEM_LIMIT=4073741824
15
+
16
+ MYSQL_PASSWORD=infini_rag_flow
17
+ MYSQL_PORT=5455
18
+
19
+ MINIO_USER=infiniflow
20
+ MINIO_PASSWORD=infini_rag_flow
21
+
22
+ SVR_HTTP_PORT=9380
23
+
24
+ ######## OS setup for ES ###########
25
+ # sysctl vm.max_map_count
26
+ # sudo sysctl -w vm.max_map_count=262144
27
+ # However, this change is not persistent and will be reset after a system reboot.
28
+ # To make the change permanent, you need to update the /etc/sysctl.conf file.
29
+ # Add or update the following line in the file:
30
+ # vm.max_map_count=262144