Skip to content

Commit

Permalink
chore(deps): update docker.elastic.co/elasticsearch/elasticsearch doc…
Browse files Browse the repository at this point in the history
…ker tag to v8.10.2 (#863)

* chore(deps): update docker.elastic.co/elasticsearch/elasticsearch docker tag to v8.10.2

* upgrade kibana and testcontainer

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Raja Kolli <[email protected]>
  • Loading branch information
renovate[bot] and rajadilipkolli authored Sep 21, 2023
1 parent fde79c2 commit 32e6c49
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions boot-mongodb-elasticsearch/docker/docker-compose-cluster.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ services:
restart: unless-stopped

elasticsearch:
image: docker.elastic.co/elasticsearch/elasticsearch:8.10.1
image: docker.elastic.co/elasticsearch/elasticsearch:8.10.2
container_name: elasticsearch
environment:
- discovery.type=single-node
Expand All @@ -73,7 +73,7 @@ services:
- esdata1:/usr/share/elasticsearch/data

kibana:
image: docker.elastic.co/kibana/kibana:8.10.1
image: docker.elastic.co/kibana/kibana:8.10.2
container_name: kibana
restart: always
ports:
Expand Down
4 changes: 2 additions & 2 deletions boot-mongodb-elasticsearch/docker/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ services:
restart: unless-stopped

elasticsearch:
image: docker.elastic.co/elasticsearch/elasticsearch:8.10.1
image: docker.elastic.co/elasticsearch/elasticsearch:8.10.2
container_name: elasticsearch
environment:
- discovery.type=single-node
Expand All @@ -38,7 +38,7 @@ services:
- esdata1:/usr/share/elasticsearch/data

kibana:
image: docker.elastic.co/kibana/kibana:8.10.1
image: docker.elastic.co/kibana/kibana:8.10.2
restart: always
ports:
- "5601:5601"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public class TestApplication {
@Bean
@RestartScope
ElasticsearchContainer elasticsearchContainer() {
return new ElasticsearchContainer("docker.elastic.co/elasticsearch/elasticsearch:8.10.1")
return new ElasticsearchContainer("docker.elastic.co/elasticsearch/elasticsearch:8.10.2")
.withEnv(Map.of("xpack.security.enabled", "false"));
}

Expand Down

0 comments on commit 32e6c49

Please sign in to comment.