Skip to content

Commit

Permalink
chore(deps) : update to latest versions
Browse files Browse the repository at this point in the history
  • Loading branch information
rajadilipkolli authored Apr 4, 2024
1 parent 6f802f8 commit 14d945d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion boot-mongodb-elasticsearch/docker/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: "3.9"
services:
mongodb:
hostname: mongodb
image: mongo:7.0.5
image: mongo:7.0.8
volumes:
- mongodb:/data/db
ports:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,15 @@ public class TestApplication {
@Bean
@RestartScope
ElasticsearchContainer elasticsearchContainer() {
return new ElasticsearchContainer("docker.elastic.co/elasticsearch/elasticsearch:8.12.1")
return new ElasticsearchContainer("docker.elastic.co/elasticsearch/elasticsearch:8.13.1")
.withEnv(Map.of("xpack.security.enabled", "false"));
}

@ServiceConnection
@Bean
@RestartScope
MongoDBContainer mongoDBContainer() {
return new MongoDBContainer(DockerImageName.parse("mongo").withTag("7.0.5")).withSharding();
return new MongoDBContainer(DockerImageName.parse("mongo").withTag("7.0.8")).withSharding();
}

public static void main(String[] args) {
Expand Down

0 comments on commit 14d945d

Please sign in to comment.