Skip to content

Commit

Permalink
elasticsearch 7.17.0 (#332)
Browse files Browse the repository at this point in the history
* elasticsearch 7.17.0
* use 7.17.12 and add useful parameters

xmx xms necessary since 7.11 otherwise elasticsearch decides to use Xms 16g and destroys the pc
geoip 7.14 otherwise elasticsearch connects to the internet, we don't want that
xpack.security.enabled=false is the default value for ES7, but needed for ES8 because they changed the default to true

---------

Signed-off-by: Abdelsalem <[email protected]>
Co-authored-by: HARPER Jon <[email protected]>
  • Loading branch information
AbdelHedhili and jonenst authored Sep 6, 2023
1 parent 5b52eaf commit 42d4372
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions docker-compose/technical/docker-compose.technical.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,20 +48,23 @@ services:
unless-stopped

elasticsearch:
image: docker.elastic.co/elasticsearch/elasticsearch:7.9.3
image: docker.elastic.co/elasticsearch/elasticsearch:7.17.12
ports:
- 9200:9200
- 9300:9300
environment:
- discovery.type=single-node
- LOGSPOUT=ignore
- xpack.security.enabled=false
- ingest.geoip.downloader.enabled=false
- ES_JAVA_OPTS=-Xms1g -Xmx1g
volumes:
- $GRIDSUITE_DATABASES/elasticsearch:/usr/share/elasticsearch/data
restart:
unless-stopped

kibana:
image: docker.elastic.co/kibana/kibana:7.9.3
image: docker.elastic.co/kibana/kibana:7.17.12
ports:
- 5601:5601
environment:
Expand All @@ -72,7 +75,7 @@ services:
unless-stopped

logstash:
image: docker.elastic.co/logstash/logstash:7.9.3
image: docker.elastic.co/logstash/logstash:7.17.12
volumes:
- $PWD/../technical/pipelines.yml:/config/pipelines.yml:Z
- $PWD/../technical/logstash.conf:/usr/share/logstash/pipeline/logstash.conf:Z
Expand Down

0 comments on commit 42d4372

Please sign in to comment.