KevinHuSh
commited on
Commit
·
b132c4f
1
Parent(s):
b772fd3
Create docker .env
Browse files- docker/.env +18 -0
docker/.env
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Version of Elastic products
|
| 2 |
+
STACK_VERSION=8.11.3
|
| 3 |
+
|
| 4 |
+
# Set the cluster name
|
| 5 |
+
CLUSTER_NAME=docass
|
| 6 |
+
|
| 7 |
+
# Port to expose Elasticsearch HTTP API to the host
|
| 8 |
+
ES_PORT=9200
|
| 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=1073741824
|
| 15 |
+
|
| 16 |
+
POSTGRES_USER=root
|
| 17 |
+
POSTGRES_PASSWORD=infiniflow_docass
|
| 18 |
+
POSTGRES_DB=docass
|