-
Notifications
You must be signed in to change notification settings - Fork 1
/
docker-compose.yml
36 lines (36 loc) · 1.02 KB
/
docker-compose.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
version: "2"
services:
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
cortex:
image: thehiveproject/cortex:3.0.0-RC2
depends_on:
- elasticsearch
ports:
- "0.0.0.0:9001:9001"
thehive:
image: thehiveproject/thehive:3.3.1
depends_on:
- elasticsearch
- cortex
ports:
- "0.0.0.0:9000:9000"
feed:
build:
context: .
command: ["--module", "modules.thehive", "--config", "hive_user=MY_THE_HIVE_USER", "--config", "hive_url=http://thehive:9000", "--config", "hive_key=MY_THE_HIVE_KEY", "--consumer-group", "my-consumer-group"]
volumes:
- .credentials.json:/app/.credentials.json