Skip to content

Commit 9ccf08c

Browse files
committed
switched to mongodb container tag 8.0
1 parent 9d8d3e8 commit 9ccf08c

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1313
- fj-core version set to 8.6.6
1414
- quarkus version set to 3.18.3
1515
- lombok version set to 1.18.34
16+
- switched to mongodb container tag 8.0
1617

1718
## [1.0.0] - 2024-06-29
1819

src/main/docker/docker-compose.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ networks:
1515
# 2. Spring Boot
1616
services:
1717
mongodb:
18-
image: mongo:8.0.0-rc8
18+
image: mongo:8.0
1919
container_name: mongo8-photobook
2020
restart: always
2121
networks:

src/test/java/test/org/fugerit/java/demo/quarkus/photobook/rest/MongoContainerProfile.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
@Slf4j
1313
public class MongoContainerProfile implements QuarkusTestProfile {
1414

15-
final GenericContainer mongoDBContainer = new GenericContainer( "mongo:8.0.0-rc7" )
15+
final GenericContainer mongoDBContainer = new GenericContainer( "mongo:8.0" )
1616
.withCopyToContainer(MountableFile.forHostPath( new File( "src/test/resources/mongo-db/mongo-init.js" ).getPath() ), "/docker-entrypoint-initdb.d/mongo-init.js" )
1717
.withExposedPorts( 27017 );
1818

0 commit comments

Comments
 (0)