Skip to content

Commit

Permalink
Bump mariadb to v11
Browse files Browse the repository at this point in the history
  • Loading branch information
chadlwilson committed Jan 21, 2024
1 parent be8331e commit 76cb3b9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion examples/db/batect-source-mariadb.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
containers:
source-db:
image: mariadb:10
image: mariadb:11
environment:
MARIADB_RANDOM_ROOT_PASSWORD: "true"
MARIADB_DATABASE: <{db-name}
Expand Down
2 changes: 1 addition & 1 deletion examples/db/batect-target-mariadb.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
containers:
target-db:
image: mariadb:10
image: mariadb:11
environment:
MARIADB_RANDOM_ROOT_PASSWORD: "true"
MARIADB_DATABASE: <{db-name}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ internal open class DatasetRecServiceCrossDatabaseIntegrationTest {
private val databases: Map<String, JdbcDatabaseContainer<Nothing>> =
buildMap {
put("mysql", MySQLContainer("mysql:8.0"))
put("mariadb", MariaDBContainer("mariadb:10"))
put("mariadb", MariaDBContainer("mariadb:11"))
put("postgres", PostgreSQLContainer("postgres:16-alpine"))
if (!System.getProperty("os.arch").contains(Regex("arm64|aarch64"))) {
put(
Expand Down

0 comments on commit 76cb3b9

Please sign in to comment.