Skip to content

Commit

Permalink
Switch MySQL 5.7 to 8 as 5.7 is EOL
Browse files Browse the repository at this point in the history
  • Loading branch information
jedla97 committed Feb 16, 2024
1 parent 65131a4 commit 106e991
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 106e991

Please sign in to comment.