Skip to content

Commit 76d767e

Browse files
authored
Use slim-faststart images from oracle (#6156)
Previously, the `fastart` images were used but those are quite big. Instead, it was suggested to use `slim-faststart` tags.
1 parent 238a97a commit 76d767e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

modules/oracle-xe/src/test/java/org/testcontainers/junit/oracle/SimpleOracleTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
public class SimpleOracleTest extends AbstractContainerDatabaseTest {
1515

1616
public static final DockerImageName ORACLE_DOCKER_IMAGE_NAME = DockerImageName.parse(
17-
"gvenzl/oracle-xe:21-faststart"
17+
"gvenzl/oracle-xe:21-slim-faststart"
1818
);
1919

2020
private void runTest(OracleContainer container, String databaseName, String username, String password)
@@ -53,7 +53,7 @@ public void testPluggableDatabase() throws SQLException {
5353
public void testPluggableDatabaseAndCustomUser() throws SQLException {
5454
try (
5555
// constructor {
56-
OracleContainer oracle = new OracleContainer("gvenzl/oracle-xe:21-faststart")
56+
OracleContainer oracle = new OracleContainer("gvenzl/oracle-xe:21-slim-faststart")
5757
.withDatabaseName("testDB")
5858
.withUsername("testUser")
5959
.withPassword("testPassword")

0 commit comments

Comments
 (0)