-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
42 lines (41 loc) · 1.03 KB
/
docker-compose.yml
File metadata and controls
42 lines (41 loc) · 1.03 KB
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
38
39
40
41
42
services:
elasticsearch:
image: docker.elastic.co/elasticsearch/elasticsearch:7.17.0
container_name: elasticsearch
environment:
- node.name=es01
- cluster.name=es-docker-cluster
- cluster.initial_master_nodes=es01
- "ES_JAVA_OPTS=-Xms512m -Xmx512m"
ports:
- 9200:9200
arkime:
build:
context: .
image: strackvibes/arkime:5.1.1
container_name: arkime
environment:
# Set to true on first execution, then false subsequently
- INITIALIZEDB=true
- ARKIME_PASSWORD=password
- WIPEDB=true
- ARKIME_VERSION=5.1.1
- UBUNTU_VERSION=20.04
- ES_HOST=elasticsearch
- ES_PORT=9200
- ARKIME_INTERFACE=eth0
- CAPTURE=off
- VIEWER=on
- CONT3XT=on
- WISE=on
depends_on:
- elasticsearch
ports:
- 8005:8005
- 3218:3218
- 8081:8081
volumes:
- ./arkime/pcap:/data/pcap
- ./arkime/etc:/opt/arkime/etc
- ./arkime/logs:/opt/arkime/logs
- ./arkime/raw:/opt/arkime/raw