Skip to content

Commit

Permalink
Merge pull request #457 from jedla97/update-mysql
Browse files Browse the repository at this point in the history
Switch MySQL 5.7 to 8 as 5.7 is EOL
  • Loading branch information
jedla97 authored Feb 21, 2024
2 parents d8bc64d + 106e991 commit 4840e99
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public class MySqlDatabaseTestResource implements QuarkusTestResourceLifecycleMa
@Override
public Map<String, String> start() {
container = new MySQLContainer<>(
DockerImageName.parse("docker.io/mysql:5.7").asCompatibleSubstituteFor(MYSQL));
DockerImageName.parse("docker.io/library/mysql:8.0").asCompatibleSubstituteFor(MYSQL));
container.withUrlParam("currentSchema", DEFAULT_SCHEMA);
container.start();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ services:
POSTGRES_DB: amadeus

mysql:
image: docker.io/mysql:5.7.32
image: docker.io/library/mysql:8.0
hostname: mysql
container_name: mysql
ports:
Expand Down

0 comments on commit 4840e99

Please sign in to comment.