Skip to content

Commit

Permalink
⬆️ : use mongodb 4.4
Browse files Browse the repository at this point in the history
  • Loading branch information
juwit committed Sep 4, 2020
1 parent e21c05b commit dbd1469
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Dockerfile-db
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
FROM mongo:4.0
FROM mongo:4.4

COPY /src/test/resources/db/*.js /docker-entrypoint-initdb.d/
COPY /src/test/resources/db/*.js /docker-entrypoint-initdb.d/
2 changes: 1 addition & 1 deletion src/test/java/io/gaia_app/test/MongoContainer.java
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public class MongoContainer extends GenericContainer {
private MongoDatabase database;

public MongoContainer() {
super("mongo:4.0");
super("mongo:4.4");
withClasspathResourceMapping("db", GAIA_SCRIPTS_DIRECTORY, BindMode.READ_ONLY);
}

Expand Down

0 comments on commit dbd1469

Please sign in to comment.