Skip to content

Commit

Permalink
chore(deps): update mongo docker tag to v8.0.1 (#1432)
Browse files Browse the repository at this point in the history
* chore(deps): update mongo docker tag to v8.0.1

* update versions

---------

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 Oct 18, 2024
1 parent 2042678 commit 05b1f32
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 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:8.0.0
image: mongo:8.0.1
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.15.2")
return new ElasticsearchContainer("docker.elastic.co/elasticsearch/elasticsearch:8.15.3")
.withEnv(Map.of("xpack.security.enabled", "false"));
}

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

public static void main(String[] args) {
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ services:
- /var/run/docker.sock:/var/run/docker.sock

mongodb:
image: mongo:8.0.0
image: mongo:8.0.1
ports:
- "27017:27017"
volumes:
Expand Down

0 comments on commit 05b1f32

Please sign in to comment.