Skip to content

Commit

Permalink
Update integration tests to use Oracle container image 23.2.0-faststart
Browse files Browse the repository at this point in the history
  • Loading branch information
Sanne committed Apr 5, 2023
1 parent 06674c8 commit d57c543
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,9 @@ class OracleDatabase implements TestableDatabase {
}
}

public static final OracleContainer oracle = new OracleContainer( imageName( "gvenzl/oracle-xe", "21-slim-faststart" ) )
public static final OracleContainer oracle = new OracleContainer(
imageName( "gvenzl/oracle-free", "23.2.0-faststart" )
.asCompatibleSubstituteFor( "gvenzl/oracle-xe" ) )
.withUsername( DatabaseConfiguration.USERNAME )
.withPassword( DatabaseConfiguration.PASSWORD )
.withDatabaseName( DatabaseConfiguration.DB_NAME )
Expand Down
2 changes: 1 addition & 1 deletion podman.md
Original file line number Diff line number Diff line change
Expand Up @@ -206,5 +206,5 @@ and schema to run the tests:
[oracle]:https://www.oracle.com/database/technologies/appdev/xe.html

```
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-xe:21-slim-faststart
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
```

0 comments on commit d57c543

Please sign in to comment.