File tree Expand file tree Collapse file tree 3 files changed +3
-4
lines changed
hibernate-reactive-core/src/test/java/org/hibernate/reactive/containers Expand file tree Collapse file tree 3 files changed +3
-4
lines changed Original file line number Diff line number Diff line change 4949 services :
5050 # Label used to access the service container
5151 mysql :
52- # Docker Hub image
53- image : mysql:9.2.0
52+ image : container-registry.oracle.com/mysql/community-server:9.3.0
5453 env :
5554 MYSQL_ROOT_PASSWORD : hreact
5655 MYSQL_DATABASE : hreact
Original file line number Diff line number Diff line change @@ -87,7 +87,7 @@ class MySQLDatabase implements TestableDatabase {
8787 * TIP: To reuse the same containers across multiple runs, set `testcontainers.reuse.enable=true` in a file located
8888 * at `$HOME/.testcontainers.properties` (create the file if it does not exist).
8989 */
90- public static final MySQLContainer <?> mysql = new MySQLContainer <>( fromDockerfile ( "mysql" ) )
90+ public static final MySQLContainer <?> mysql = new MySQLContainer <>( fromDockerfile ( "mysql" ). asCompatibleSubstituteFor ( "mysql" ) )
9191 .withUsername ( DatabaseConfiguration .USERNAME )
9292 .withPassword ( DatabaseConfiguration .PASSWORD )
9393 .withDatabaseName ( DatabaseConfiguration .DB_NAME )
Original file line number Diff line number Diff line change 11# MySQL
22# See https://hub.docker.com/_/mysql
3- FROM docker.io /mysql:9.2 .0
3+ FROM container-registry.oracle.com /mysql/community-server :9.3 .0
You can’t perform that action at this time.
0 commit comments