From d95b334d361472811e7e8c892055257c210ffe76 Mon Sep 17 00:00:00 2001 From: To-om Date: Fri, 15 Sep 2017 17:27:13 +0200 Subject: [PATCH] #275 Update docker compose file to used ElasticSearch 5.x --- docker/thehive/docker-compose.yml | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/docker/thehive/docker-compose.yml b/docker/thehive/docker-compose.yml index eaf55df300..2122593126 100644 --- a/docker/thehive/docker-compose.yml +++ b/docker/thehive/docker-compose.yml @@ -1,13 +1,16 @@ version: "2" services: elasticsearch: - image: elasticsearch:2 - command: [ - -Des.script.inline=on, - -Des.cluster.name=hive, - -Des.threadpool.index.queue_size=100000, - -Des.threadpool.search.queue_size=100000, - -Des.threadpool.bulk.queue_size=1000] + image: docker.elastic.co/elasticsearch/elasticsearch:5.5.2 + 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 cortex: image: certbdf/cortex:latest ports: @@ -18,4 +21,4 @@ services: - elasticsearch - cortex ports: - - "0.0.0.0:9000:9000" \ No newline at end of file + - "0.0.0.0:9000:9000"