-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.thehive.yml
43 lines (41 loc) · 1.19 KB
/
docker-compose.thehive.yml
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
43
version: "3.7"
# TheHive
services:
thehive-proxy-thehive:
build: thehive/thehive-proxy-thehive
depends_on:
- thehive-thehive
ports:
- ${SO_GATEWAY}:6001:80
thehive-proxy-cortex:
build: thehive/thehive-proxy-cortex
depends_on:
- thehive-cortex
thehive-thehive:
image: thehiveproject/thehive:latest
depends_on:
- thehive-elasticsearch
- thehive-cortex
volumes:
- ${PWD}/thehive/thehive/application.conf:/etc/thehive/application.conf
command: --es-hostname thehive-elasticsearch --cortex-hostname thehive-cortex --cortex-key ${CORTEX_API_KEY}
thehive-cortex:
image: thehiveproject/cortex:latest
depends_on:
- thehive-elasticsearch
command: --es-hostname thehive-elasticsearch
thehive-elasticsearch:
image: docker.elastic.co/elasticsearch/elasticsearch:5.6.0
environment:
- http.host=0.0.0.0
- transport.host=0.0.0.0
- xpack.security.enabled=false
- cluster.name=hive
- script.inline=true
- thread_pool.index.queue_size=100000
- thread_pool.search.queue_size=100000
- thread_pool.bulk.queue_size=100000
ulimits:
nofile:
soft: 65536
hard: 65536