File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed
hibernate-reactive-core/src/test/java/org/hibernate/reactive/containers Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ class MariaDatabase extends MySQLDatabase {
19
19
* TIP: To reuse the same containers across multiple runs, set `testcontainers.reuse.enable=true` in a file located
20
20
* at `$HOME/.testcontainers.properties` (create the file if it does not exist).
21
21
*/
22
- public static final VertxMariaContainer maria = new VertxMariaContainer ( imageName ( "mariadb" , "10.7.1 " ) )
22
+ public static final VertxMariaContainer maria = new VertxMariaContainer ( imageName ( "mariadb" , "10.7.3 " ) )
23
23
.withUsername ( DatabaseConfiguration .USERNAME )
24
24
.withPassword ( DatabaseConfiguration .PASSWORD )
25
25
.withDatabaseName ( DatabaseConfiguration .DB_NAME )
Original file line number Diff line number Diff line change @@ -66,7 +66,7 @@ and schema to run the tests:
66
66
```
67
67
podman run --rm --name HibernateTestingMariaDB \
68
68
-e MYSQL_ROOT_PASSWORD=hreact -e MYSQL_DATABASE=hreact -e MYSQL_USER=hreact -e MYSQL_PASSWORD=hreact \
69
- -p 3306:3306 mariadb:10.7.1
69
+ -p 3306:3306 mariadb:10.7.3
70
70
```
71
71
72
72
When the database has started, you can run the tests on MariaDB with:
Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ import static org.assertj.core.api.Assertions.assertThat;
62
62
public class {baseName} {
63
63
64
64
@ClassRule
65
- public static MariaDBContainer<?> database = new MariaDBContainer<>( "mariadb:10.7.1 " );
65
+ public static MariaDBContainer<?> database = new MariaDBContainer<>( "mariadb:10.7.3 " );
66
66
67
67
private Mutiny.SessionFactory sessionFactory;
68
68
Original file line number Diff line number Diff line change @@ -231,7 +231,7 @@ enum Database {
231
231
POSTGRESQL ( () -> new PostgreSQLContainer ( "postgres:14" ) ),
232
232
MYSQL ( () -> new MySQLContainer ( "mysql:8.0.28" ) ),
233
233
DB2 ( () -> new Db2Container ( "docker.io/ibmcom/db2:11.5.7.0a" ).acceptLicense () ),
234
- MARIADB ( () -> new MariaDBContainer ( "mariadb:10.7.1 " ) ),
234
+ MARIADB ( () -> new MariaDBContainer ( "mariadb:10.7.3 " ) ),
235
235
COCKROACHDB ( () -> new CockroachContainer ( "cockroachdb/cockroach:v21.2.4" ) );
236
236
237
237
private final Supplier <JdbcDatabaseContainer <?>> containerSupplier ;
You can’t perform that action at this time.
0 commit comments