Skip to content

Commit 91ce28e

Browse files
committed
#275 Update docker compose file to used ElasticSearch 5.x
1 parent 3dd7414 commit 91ce28e

File tree

1 file changed

+11
-8
lines changed

1 file changed

+11
-8
lines changed

docker/thehive/docker-compose.yml

+11-8
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,16 @@
11
version: "2"
22
services:
33
elasticsearch:
4-
image: elasticsearch:2
5-
command: [
6-
-Des.script.inline=on,
7-
-Des.cluster.name=hive,
8-
-Des.threadpool.index.queue_size=100000,
9-
-Des.threadpool.search.queue_size=100000,
10-
-Des.threadpool.bulk.queue_size=1000]
4+
image: docker.elastic.co/elasticsearch/elasticsearch:5.5.2
5+
environment:
6+
- http.host=0.0.0.0
7+
- transport.host=0.0.0.0
8+
- xpack.security.enabled=false
9+
- cluster.name=hive
10+
- script.inline=true
11+
- thread_pool.index.queue_size=100000
12+
- thread_pool.search.queue_size=100000
13+
- thread_pool.bulk.queue_size=100000
1114
cortex:
1215
image: certbdf/cortex:latest
1316
ports:
@@ -18,4 +21,4 @@ services:
1821
- elasticsearch
1922
- cortex
2023
ports:
21-
- "0.0.0.0:9000:9000"
24+
- "0.0.0.0:9000:9000"

0 commit comments

Comments
 (0)