From 07f30aadb6727eb8476fd0aac051f4a6a19322a9 Mon Sep 17 00:00:00 2001 From: Sanne Grinovero Date: Fri, 7 Apr 2023 12:21:32 +0100 Subject: [PATCH] Upgrade Oracle DB container images to use the slim-faststart variant --- build-parent/pom.xml | 2 +- integration-tests/jpa-oracle/README.md | 2 +- integration-tests/reactive-oracle-client/README.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/build-parent/pom.xml b/build-parent/pom.xml index fabe62be00cf1..f0967790ca109 100644 --- a/build-parent/pom.xml +++ b/build-parent/pom.xml @@ -94,7 +94,7 @@ docker.io/ibmcom/db2:11.5.7.0a mcr.microsoft.com/mssql/server:2019-latest docker.io/mysql:8.0 - docker.io/gvenzl/oracle-free:23.2.0-faststart + docker.io/gvenzl/oracle-free:23-slim-faststart docker.io/mongo:4.4 diff --git a/integration-tests/jpa-oracle/README.md b/integration-tests/jpa-oracle/README.md index bdcabaf91e46b..7eb9852d8d8f4 100644 --- a/integration-tests/jpa-oracle/README.md +++ b/integration-tests/jpa-oracle/README.md @@ -22,7 +22,7 @@ Authentication parameters might need to be changed in the Quarkus configuration ### Starting Oracle via docker ``` -docker run --rm=true --name=HibernateTestingOracle -p 1521:1521 -e ORACLE_PASSWORD=hibernate_orm_test docker.io/gvenzl/oracle-free:23.2.0-faststart +docker run --rm=true --name=HibernateTestingOracle -p 1521:1521 -e ORACLE_PASSWORD=hibernate_orm_test docker.io/gvenzl/oracle-free:23-slim-faststart ``` This will start a local instance with the configuration matching the parameters used by the integration tests of this module. diff --git a/integration-tests/reactive-oracle-client/README.md b/integration-tests/reactive-oracle-client/README.md index d6d23d284aa1d..4a2ebb5ea0dc2 100644 --- a/integration-tests/reactive-oracle-client/README.md +++ b/integration-tests/reactive-oracle-client/README.md @@ -23,7 +23,7 @@ Authentication parameters might need to be changed in the Quarkus configuration ### Starting Oracle via docker ``` -docker run --rm=true --name=HibernateTestingOracle -p 1521:1521 -e ORACLE_PASSWORD=hibernate_orm_test docker.io/gvenzl/oracle-free:23.2.0-faststart +docker run --rm=true --name=HibernateTestingOracle -p 1521:1521 -e ORACLE_PASSWORD=hibernate_orm_test docker.io/gvenzl/oracle-free:23-slim-faststart ``` This will start a local instance with the configuration matching the parameters used by the integration tests of this module.