forked from mammo0/docker-arkime
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.env
37 lines (28 loc) · 1013 Bytes
/
.env
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# environment file for docker-compose
# Elasticsearch settings
########################
# the ES version
ES_VERSION=7.17.3
# the names of the ES nodes
# currently 3 instances are started
ES_NODE1=es01
ES_NODE2=es02
ES_NODE3=es03
# specify how much memory should one ES instance get
# keep in mind that currently 3 instances are started!
ES_MAX_MEM=1000000000
# the data of ES is stored in this direcotry
# it's recommended to store it on a SSD
# please note:
# 1. this directory MUST contain 3 sub-directories with the names of the ES
# nodes above or just copy the directory to the SSD and set the path here
# 2. this direcotry and especially the sub-directories must have file
# permissions 777 set. Or they must be owned by user AND group 1000.
ES_DATA_DIR=./es_data
# Arkime settings
#################
# the port were the Arkime instance can be reached
ARKIME_PORT=8005
# the path were your PCAP files are stored
# or should be stored if you want to use moloch-capture
PCAP_DIR=./pcaps