Skip to content

Commit

Permalink
#275 Update docker compose file to used ElasticSearch 5.x
Browse files Browse the repository at this point in the history
  • Loading branch information
To-om committed Sep 15, 2017
1 parent 3dd7414 commit 91ce28e
Showing 1 changed file with 11 additions and 8 deletions.
19 changes: 11 additions & 8 deletions docker/thehive/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -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:
Expand All @@ -18,4 +21,4 @@ services:
- elasticsearch
- cortex
ports:
- "0.0.0.0:9000:9000"
- "0.0.0.0:9000:9000"

0 comments on commit 91ce28e

Please sign in to comment.