Skip to content

Commit

Permalink
Merge pull request quarkusio#38867 from gastaldi/db2_update
Browse files Browse the repository at this point in the history
Bump to DB2 11.5.9.0
  • Loading branch information
gsmet authored Feb 20, 2024
2 parents 5515a66 + c417896 commit 3652134
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build-parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@
<!-- Database images for JDBC/Reactive/Hibernate tests and devservices -->
<postgres.image>docker.io/postgres:14</postgres.image>
<mariadb.image>docker.io/mariadb:10.11</mariadb.image>
<db2.image>docker.io/ibmcom/db2:11.5.8.0</db2.image>
<db2.image>icr.io/db2_community/db2:11.5.9.0</db2.image>
<mssql.image>mcr.microsoft.com/mssql/server:2022-latest</mssql.image>
<mysql.image>docker.io/mysql:8.0</mysql.image>
<oracle.image>docker.io/gvenzl/oracle-free:23-slim-faststart</oracle.image>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ private static class QuarkusDb2Container extends Db2Container {

public QuarkusDb2Container(Optional<String> imageName, OptionalInt fixedExposedPort, boolean useSharedNetwork) {
super(DockerImageName.parse(imageName.orElseGet(() -> ConfigureUtil.getDefaultImageNameFor("db2")))
.asCompatibleSubstituteFor(DockerImageName.parse("ibmcom/db2")));
.asCompatibleSubstituteFor(DockerImageName.parse("icr.io/db2_community/db2")));
this.fixedExposedPort = fixedExposedPort;
this.useSharedNetwork = useSharedNetwork;
}
Expand Down

0 comments on commit 3652134

Please sign in to comment.