File tree Expand file tree Collapse file tree 5 files changed +5
-5
lines changed
hibernate-reactive-core/src/test/java/org/hibernate/reactive/containers Expand file tree Collapse file tree 5 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 24
24
# Label used to access the service container
25
25
mysql :
26
26
# Docker Hub image
27
- image : mysql:8.0.23
27
+ image : mysql:8.0.24
28
28
env :
29
29
MYSQL_ROOT_PASSWORD : hreact
30
30
MYSQL_DATABASE : hreact
Original file line number Diff line number Diff line change 32
32
# Label used to access the service container
33
33
mysql :
34
34
# Docker Hub image
35
- image : mysql:8
35
+ image : mysql:8.0.24
36
36
env :
37
37
MYSQL_ROOT_PASSWORD : hreact
38
38
MYSQL_DATABASE : hreact
Original file line number Diff line number Diff line change 32
32
# Label used to access the service container
33
33
mysql :
34
34
# Docker Hub image
35
- image : mysql:8
35
+ image : mysql:8.0.24
36
36
env :
37
37
MYSQL_ROOT_PASSWORD : hreact
38
38
MYSQL_DATABASE : hreact
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ class MySQLDatabase implements TestableDatabase {
9
9
10
10
static MySQLDatabase INSTANCE = new MySQLDatabase ();
11
11
12
- public final static String IMAGE_NAME = "mysql:8.0.23 " ;
12
+ public final static String IMAGE_NAME = "mysql:8.0.24 " ;
13
13
14
14
/**
15
15
* Holds configuration for the MySQL database container. If the build is run with <code>-Pdocker</code> then
Original file line number Diff line number Diff line change @@ -93,7 +93,7 @@ and schema to run the tests:
93
93
```
94
94
podman run --rm --name HibernateTestingMySQL \
95
95
-e MYSQL_ROOT_PASSWORD=hreact -e MYSQL_DATABASE=hreact -e MYSQL_USER=hreact -e MYSQL_PASSWORD=hreact \
96
- -p 3306:3306 mysql:8.0.23
96
+ -p 3306:3306 mysql:8.0.24
97
97
```
98
98
99
99
When the database has started, you can run the tests on MySQL with:
You can’t perform that action at this time.
0 commit comments