Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
miyabayt committed Apr 8, 2024
1 parent ed5d147 commit 678e592
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public class BaseTestContainerTest {
.withCapabilities(chrome)
.waitingFor(Wait.forLogMessage(".*Started Selenium Standalone.*", 1));

static final MySQLContainer<?> MYSQL_CONTAINER = new MySQLContainer<>("mysql:8");
static final MySQLContainer<?> MYSQL_CONTAINER = new MySQLContainer<>("mysql:8.2");

static final GenericContainer<?> MAILHOG_CONTAINER =
new GenericContainer<>("mailhog/mailhog")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import org.testcontainers.spock.Testcontainers

class BaseTestContainerGebSpec extends GebSpec {

static final MySQLContainer<?> MYSQL_CONTAINER = new MySQLContainer<>("mysql:8")
static final MySQLContainer<?> MYSQL_CONTAINER = new MySQLContainer<>("mysql:8.2")

static final GenericContainer<?> MAILHOG_CONTAINER =
new GenericContainer<>("mailhog/mailhog")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import spock.lang.Specification
@Testcontainers
class BaseTestContainerSpec extends Specification {

static final MySQLContainer<?> MYSQL_CONTAINER = new MySQLContainer<>("mysql:8")
static final MySQLContainer<?> MYSQL_CONTAINER = new MySQLContainer<>("mysql:8.2")

static final GenericContainer<?> MAILHOG_CONTAINER =
new GenericContainer<>("mailhog/mailhog")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
@Testcontainers
public class BaseTestContainerTest {

private static final MySQLContainer<?> MYSQL_CONTAINER = new MySQLContainer<>("mysql:8");
private static final MySQLContainer<?> MYSQL_CONTAINER = new MySQLContainer<>("mysql:8.2");

private static final GenericContainer<?> MAILHOG_CONTAINER =
new GenericContainer<>("mailhog/mailhog")
Expand Down

0 comments on commit 678e592

Please sign in to comment.