Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1 +1 @@
container-registry.oracle.com/mysql/community-server:9.4.0
container-registry.oracle.com/mysql/community-server:9.5.0
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ static void beforeAll() throws IOException {
System.out.println("Starting MySQL ...");
process = new ProcessBuilder(
"docker", "run", "--rm", "-p", "3306:3306", "-e", "MYSQL_DATABASE=" + DATABASE, "-e", "MYSQL_USER=" + USERNAME,
"-e", "MYSQL_PASSWORD=" + PASSWORD, "container-registry.oracle.com/mysql/community-server:9.4.0").redirectOutput(new File("mysql-stdout.txt"))
"-e", "MYSQL_PASSWORD=" + PASSWORD, "container-registry.oracle.com/mysql/community-server:9.5.0").redirectOutput(new File("mysql-stdout.txt"))
.redirectError(new File("mysql-stderr.txt")).start();

// Wait until connection can be established
Expand Down
2 changes: 1 addition & 1 deletion tests/src/io.nats/jnats/2.16.11/required-docker-images.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
nats:2.11.8
nats:2.12.1
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class JnatsTest {
@BeforeAll
public void init() throws IOException {
System.out.println("Starting NATS ...");
process = new ProcessBuilder("docker", "run", "--rm", "-p", "4222:4222", "nats:2.11.8").inheritIO().start();
process = new ProcessBuilder("docker", "run", "--rm", "-p", "4222:4222", "nats:2.12.1").inheritIO().start();

waitUntil(() -> {
openConnection().close();
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
container-registry.oracle.com/mysql/community-server:9.4.0
container-registry.oracle.com/mysql/community-server:9.5.0
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ static void beforeAll() throws IOException {
System.out.println("Starting MySQL ...");
process = new ProcessBuilder(
"docker", "run", "--rm", "-p", "3306:3306", "-e", "MYSQL_DATABASE=" + DATABASE, "-e", "MYSQL_USER=" + USERNAME,
"-e", "MYSQL_PASSWORD=" + PASSWORD, "container-registry.oracle.com/mysql/community-server:9.4.0").redirectOutput(new File("mysql-stdout.txt"))
"-e", "MYSQL_PASSWORD=" + PASSWORD, "container-registry.oracle.com/mysql/community-server:9.5.0").redirectOutput(new File("mysql-stdout.txt"))
.redirectError(new File("mysql-stderr.txt")).start();

// Wait until connection can be established
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
postgres:16-alpine
postgres:18-alpine
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ static void beforeAll() throws IOException {
System.out.println("Starting PostgreSQL ...");
process = new ProcessBuilder(
"docker", "run", "--rm", "-p", "5432:5432", "-e", "POSTGRES_DB=" + DATABASE, "-e", "POSTGRES_USER=" + USERNAME,
"-e", "POSTGRES_PASSWORD=" + PASSWORD, "postgres:16-alpine").redirectOutput(new File("postgres-stdout.txt"))
"-e", "POSTGRES_PASSWORD=" + PASSWORD, "postgres:18-alpine").redirectOutput(new File("postgres-stdout.txt"))
.redirectError(new File("postgres-stderr.txt")).start();

// Wait until connection can be established
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
container-registry.oracle.com/mysql/community-server:9.4.0
container-registry.oracle.com/mysql/community-server:9.5.0
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public void init() throws IOException {
logger.info("Starting MySQL ...");
process = new ProcessBuilder(
"docker", "run", "--rm", "-p", "3306:3306", "-e", "MYSQL_DATABASE=" + DATABASE, "-e", "MYSQL_USER=" + USERNAME,
"-e", "MYSQL_PASSWORD=" + PASSWORD, "container-registry.oracle.com/mysql/community-server:9.4.0").inheritIO().start();
"-e", "MYSQL_PASSWORD=" + PASSWORD, "container-registry.oracle.com/mysql/community-server:9.5.0").inheritIO().start();

waitUntil(() -> {
openConnection().close();
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
postgres:16-alpine
postgres:18-alpine
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ static void beforeAll() throws IOException {
System.out.println("Starting PostgreSQL ...");
process = new ProcessBuilder(
"docker", "run", "--rm", "-p", "5432:5432", "-e", "POSTGRES_DB=" + DATABASE, "-e", "POSTGRES_USER=" + USERNAME,
"-e", "POSTGRES_PASSWORD=" + PASSWORD, "postgres:16-alpine").redirectOutput(new File("postgres-stdout.txt"))
"-e", "POSTGRES_PASSWORD=" + PASSWORD, "postgres:18-alpine").redirectOutput(new File("postgres-stdout.txt"))
.redirectError(new File("postgres-stderr.txt")).start();

// Wait until connection can be established
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
postgres:16-alpine
postgres:18-alpine
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ static void beforeAll() throws IOException {
System.out.println("Starting PostgreSQL ...");
process = new ProcessBuilder(
"docker", "run", "--rm", "-p", "5432:5432", "-e", "POSTGRES_DB=" + DATABASE, "-e", "POSTGRES_USER=" + USERNAME,
"-e", "POSTGRES_PASSWORD=" + PASSWORD, "postgres:16-alpine").redirectOutput(new File("postgres-stdout.txt"))
"-e", "POSTGRES_PASSWORD=" + PASSWORD, "postgres:18-alpine").redirectOutput(new File("postgres-stdout.txt"))
.redirectError(new File("postgres-stderr.txt")).start();

// Wait until connection can be established
Expand Down
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
nginx:1-alpine-slim
testcontainers/ryuk:0.12.0
testcontainers/ryuk:0.14.0
Original file line number Diff line number Diff line change
@@ -1 +1 @@
ryuk.container.image=testcontainers/ryuk:0.12.0
ryuk.container.image=testcontainers/ryuk:0.14.0
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
nginx:1-alpine-slim
testcontainers/ryuk:0.12.0
testcontainers/ryuk:0.14.0
Original file line number Diff line number Diff line change
@@ -1 +1 @@
ryuk.container.image=testcontainers/ryuk:0.12.0
ryuk.container.image=testcontainers/ryuk:0.14.0
Original file line number Diff line number Diff line change
@@ -1 +1 @@
container-registry.oracle.com/mysql/community-server:9.4.0
container-registry.oracle.com/mysql/community-server:9.5.0
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ private void runImage(String image, boolean shouldSucceed) throws Exception {

@Test
void pullAllowedImage() throws Exception {
runImage("container-registry.oracle.com/mysql/community-server:9.4.0", true);
runImage("container-registry.oracle.com/mysql/community-server:9.5.0", true);
}

@Test
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
FROM container-registry.oracle.com/mysql/community-server:9.4.0
FROM container-registry.oracle.com/mysql/community-server:9.5.0
Original file line number Diff line number Diff line change
@@ -1 +1 @@
FROM nats:2.11.8
FROM nats:2.12.1
Original file line number Diff line number Diff line change
@@ -1 +1 @@
FROM postgres:16-alpine
FROM postgres:18-alpine
Original file line number Diff line number Diff line change
@@ -1 +1 @@
FROM testcontainers/ryuk:0.12.0
FROM testcontainers/ryuk:0.14.0
Loading