Skip to content

Commit 0af4ebc

Browse files
SanneDavideD
authored andcommitted
Further switch the Oracle container image to use the slim variants
1 parent 4e4056d commit 0af4ebc

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

hibernate-reactive-core/src/test/java/org/hibernate/reactive/containers/OracleDatabase.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ class OracleDatabase implements TestableDatabase {
8585
}
8686

8787
public static final OracleContainer oracle = new OracleContainer(
88-
imageName( "gvenzl/oracle-free", "23.2.0-faststart" )
88+
imageName( "gvenzl/oracle-free", "23-slim-faststart" )
8989
.asCompatibleSubstituteFor( "gvenzl/oracle-xe" ) )
9090
.withUsername( DatabaseConfiguration.USERNAME )
9191
.withPassword( DatabaseConfiguration.PASSWORD )

podman.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -198,13 +198,13 @@ podman exec -it HibernateTestingMSSQL /opt/mssql-tools/bin/sqlcmd -S localhost -
198198

199199
[sqlcmd-cli]:https://docs.microsoft.com/en-us/sql/tools/sqlcmd-utility?view=sql-server-ver15
200200

201-
## Oracle
201+
## Oracle Database
202202

203-
Use the following command to start a [Oracle XE][oracle] database with the required credentials
204-
and schema to run the tests:
203+
Use the following command to start an [Oracle Database 23c Free—Developer Release][oracle] with the required
204+
credentials and schema to run the tests:
205205

206-
[oracle]:https://www.oracle.com/database/technologies/appdev/xe.html
206+
[oracle]:https://www.oracle.com/database/free/
207207

208208
```
209-
podman run --rm --name HibernateTestingOracle -e ORACLE_PASSWORD=hreact -e APP_USER=hreact -e APP_USER_PASSWORD=hreact -e ORACLE_DATABASE=hreact -p 1521:1521 docker.io/gvenzl/oracle-free:23.2.0-faststart
209+
podman run --rm --name HibernateTestingOracle -e ORACLE_PASSWORD=hreact -e APP_USER=hreact -e APP_USER_PASSWORD=hreact -e ORACLE_DATABASE=hreact -p 1521:1521 docker.io/gvenzl/oracle-free:23-slim-faststart
210210
```

0 commit comments

Comments
 (0)