Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[docker-compose] Update images to ES/Kibiter 6.8
This code updates the docker-compose files by
changing the elasticsearch and kibiter sections
to use the images for ES/Kibiter 6.8.

Signed-off-by: Valerio Cosentino <valcos@bitergia.com>
  • Loading branch information
valeriocos authored and zhquan committed Jun 11, 2020
1 parent 3a3479a commit b369b8d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
9 changes: 5 additions & 4 deletions docker-compose/docker-compose-secured.yml
Expand Up @@ -24,22 +24,23 @@ services:
- ../default-grimoirelab-settings/shdb.cfg:/home/grimoirelab/shdb.cfg

elasticsearch:
image: bitergia/elasticsearch:6.1.0-secured
command: /elasticsearch/bin/elasticsearch -E network.bind_host=0.0.0.0
image: bitergia/elasticsearch:6.8.6-secured
command: elasticsearch -Enetwork.bind_host=0.0.0.0 -Ehttp.max_content_length=2000mb
ports:
- 9200:9200
environment:
- ES_JAVA_OPTS=-Xms2g -Xmx2g

kibiter:
restart: on-failure:5
image: bitergia/kibiter:secured-v6.1.4-5
image: bitergia/kibiter:secured-v6.8.6-3
environment:
- PROJECT_NAME=Demo
- NODE_OPTIONS=--max-old-space-size=1000
- ELASTICSEARCH_URL=https://elasticsearch:9200
- ELASTICSEARCH_USER=kibanaserver
- ELASTICSEARCH_PASSWORD=kibanaserver
- ELASTICSEARCH_URL=["https://elasticsearch:9200"]
- LOGIN_SUBTITLE=If you have forgotten your username or password ...
links:
- elasticsearch
ports:
Expand Down
7 changes: 4 additions & 3 deletions docker-compose/docker-compose.yml
Expand Up @@ -24,16 +24,17 @@ services:
- ../default-grimoirelab-settings/shdb.cfg:/home/grimoirelab/shdb.cfg

elasticsearch:
image: docker.elastic.co/elasticsearch/elasticsearch-oss:6.1.4
command: /elasticsearch/bin/elasticsearch -E network.bind_host=0.0.0.0
image: docker.elastic.co/elasticsearch/elasticsearch-oss:6.8.6
command: elasticsearch -Enetwork.bind_host=0.0.0.0 -Ehttp.max_content_length=2000mb
ports:
- 9200:9200
environment:
- ES_JAVA_OPTS=-Xms2g -Xmx2g
- ANONYMOUS_USER=true

kibiter:
restart: on-failure:5
image: bitergia/kibiter:optimized-v6.1.4-3
image: bitergia/kibiter:community-v6.8.6-3
environment:
- PROJECT_NAME=Demo
- NODE_OPTIONS=--max-old-space-size=1000
Expand Down

0 comments on commit b369b8d

Please sign in to comment.