Skip to content

Commit

Permalink
Added platform to mysql docker instances for compatability with Mac M…
Browse files Browse the repository at this point in the history
…1 machines
  • Loading branch information
Kevin Chappell committed Mar 31, 2022
1 parent 1790dde commit 1414399
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
16 changes: 16 additions & 0 deletions maven.output
@@ -0,0 +1,16 @@
[INFO] Error stacktraces are turned on.
[INFO] Scanning for projects...
[WARNING]
[WARNING] Some problems were encountered while building the effective model for org.liquibase:liquibase-test-harness:jar:1.0.5-SNAPSHOT
[WARNING] 'dependencies.dependency.(groupId:artifactId:type:classifier)' must be unique: org.hsqldb:hsqldb:jar -> version 2.6.0 vs 2.5.2 @ line 164, column 21
[WARNING] 'dependencies.dependency.(groupId:artifactId:type:classifier)' must be unique: org.firebirdsql.jdbc:jaybird:jar -> version 4.0.5.java11 vs 4.0.5.java8 @ line 177, column 21
[WARNING] 'dependencies.dependency.systemPath' for com.ibm.db2:db2-z-licence:jar should not point at files within the project directory, ${project.basedir}/src/main/resources/drivers/db2/db2jcc_license_cisuz.jar will be unresolvable by dependent projects @ line 193, column 25
[WARNING]
[WARNING] It is highly recommended to fix these problems because they threaten the stability of your build.
[WARNING]
[WARNING] For this reason, future Maven versions might no longer support building such malformed projects.
[WARNING]
[INFO]
[INFO] ----------------< org.liquibase:liquibase-test-harness >----------------
[INFO] Building Liquibase Test Harness 1.0.5-SNAPSHOT
[INFO] --------------------------------[ jar ]---------------------------------
3 changes: 3 additions & 0 deletions src/test/resources/docker/docker-compose.yml
Expand Up @@ -3,6 +3,7 @@ version: '3.3'
services:

mysql-5.6:
platform: linux/x86_64
image: library/mysql:5.6
ports:
- "33064:3306"
Expand All @@ -16,6 +17,7 @@ services:
- "./mysql-init.sql:/docker-entrypoint-initdb.d/mysql-init.sql"

mysql-5.7:
platform: linux/x86_64
image: library/mysql:5.7
ports:
- "33062:3306"
Expand All @@ -29,6 +31,7 @@ services:
- "./mysql-init.sql:/docker-entrypoint-initdb.d/mysql-init.sql"

mysql-8:
platform: linux/x86_64
image: mysql:8.0.26
ports:
- "33061:3306"
Expand Down

0 comments on commit 1414399

Please sign in to comment.