Skip to content

Database 23.6 container image #172

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jan 31, 2025
Merged
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
Expand Up @@ -20,10 +20,10 @@
@Testcontainers
public class TxEventQSampleAppTest {
@Container
static OracleContainer oracleContainer = new OracleContainer("gvenzl/oracle-free:23.5-slim-faststart")
static OracleContainer oracleContainer = new OracleContainer("gvenzl/oracle-free:23.6-slim-faststart")
.withStartupTimeout(Duration.ofMinutes(2))
.withUsername("testuser")
.withPassword(("testpwd"));
.withPassword("testpwd");

@BeforeAll
public static void setUp() throws Exception {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@

public class Util {
public static OracleContainer oracleContainer() {
return new OracleContainer("gvenzl/oracle-free:23.5-slim-faststart")
return new OracleContainer("gvenzl/oracle-free:23.6-slim-faststart")
.withStartupTimeout(Duration.ofMinutes(2)) // Needed for M1 Mac
.withUsername("testuser")
.withPassword(("testpwd"));
.withPassword("testpwd");
}

public static void startOracleContainer(OracleContainer oracleContainer) throws IOException, InterruptedException {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@
@SpringBootTest(classes = JsonCollectionsAutoConfiguration.class)
@Testcontainers
public class JsonCollectionsIT {
static OracleContainer oracleContainer = new OracleContainer("gvenzl/oracle-free:23.5-slim-faststart")
static OracleContainer oracleContainer = new OracleContainer("gvenzl/oracle-free:23.6-slim-faststart")
.withStartupTimeout(Duration.ofMinutes(2))
.withUsername("testuser")
.withPassword(("testpwd"));
.withPassword("testpwd");

static DataSource dataSource;
static JdbcTemplate jdbcTemplate;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ public class JSONDualitySampleApplicationTest {
* The Testcontainers Oracle Free module let's us create an Oracle database container in a junit context.
*/
@Container
static OracleContainer oracleContainer = new OracleContainer("gvenzl/oracle-free:23.5-slim-faststart")
static OracleContainer oracleContainer = new OracleContainer("gvenzl/oracle-free:23.6-slim-faststart")
.withStartupTimeout(Duration.ofMinutes(2))
.withUsername("testuser")
.withPassword(("testpwd"));
.withPassword("testpwd");

/**
* Dynamically configure Spring Boot properties to use the Testcontainers database.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@ public class JSONEventsSampleTest {
* The Testcontainers Oracle Free module let's us create an Oracle database container in a junit context.
*/
@Container
static OracleContainer oracleContainer = new OracleContainer("gvenzl/oracle-free:23.5-slim-faststart")
static OracleContainer oracleContainer = new OracleContainer("gvenzl/oracle-free:23.6-slim-faststart")
.withStartupTimeout(Duration.ofMinutes(2))
.withUsername("testuser")
.withPassword(("testpwd"));
.withPassword("testpwd");

/**
* Dynamically configure Spring Boot properties to use the Testcontainers database.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
@Testcontainers
public class OKafkaSampleTest {
// Oracle Database 23ai Free container image
private static final String oracleImage = "gvenzl/oracle-free:23.5-slim-faststart";
private static final String oracleImage = "gvenzl/oracle-free:23.6-slim-faststart";
private static final String testUser = "testuser";
private static final String testPassword = "Welcome123#";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ public class UCPSampleApplicationTest {
* The Testcontainers Oracle Free module let's us create an Oracle database container in a junit context.
*/
@Container
static OracleContainer oracleContainer = new OracleContainer("gvenzl/oracle-free:23.5-slim-faststart")
static OracleContainer oracleContainer = new OracleContainer("gvenzl/oracle-free:23.6-slim-faststart")
.withStartupTimeout(Duration.ofMinutes(2))
.withUsername("testuser")
.withPassword(("testpwd"));
.withPassword("testpwd");

/**
* Dynamically configure Spring Boot properties to use the Testcontainers database.
Expand Down
Loading