-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Oracle XE docker image update (#1206)
* gebruik gvenzl/oracle-xe:18.4.0-full ipv oracle-xe:full want de :full image is upgraded naar 21c geupgraded * probeer ook tegen 21.3.0-full te testen * gebruik temurin voor de java runtimes * workaround voor een bug in Docker dat ervoor zorgt dat Oracle Out-of-Band (in 19c+) niet werkt, dus dat moeten we uitzetten zie gvenzl/oci-oracle-xe#43
- Loading branch information
Showing
15 changed files
with
50 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 3 additions & 1 deletion
4
.build/ci/oracle/github.connections.brmo-persistence.properties
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,4 @@ | ||
# brmo-persistence/src/test/resources/local.connections.properties | ||
oracle.url=jdbc:oracle:thin:@127.0.0.1:1521:XE | ||
# bug in Docker that prevents Oracle Out-of-Band (in 19c+) to work, so we need to disable that for 21.x | ||
# see https://github.com/gvenzl/oci-oracle-xe/issues/43 | ||
oracle.url=jdbc:oracle:thin:@127.0.0.1:1521:XE?oracle.net.disableOob=true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,12 @@ | ||
# brmo-commandline/src/test/resources/oracle.properties | ||
dbtype=oracle | ||
# rsgb database gegevens | ||
rsgb.url=jdbc:oracle:thin:@localhost:1521:XE | ||
# bug in Docker that prevents Oracle Out-of-Band (in 19c+) to work, so we need to disable that for 21.x | ||
# see https://github.com/gvenzl/oci-oracle-xe/issues/43 | ||
rsgb.url=jdbc:oracle:thin:@localhost:1521:?oracle.net.disableOob=true | ||
rsgb.user=jenkins_rsgb | ||
rsgb.password=jenkins_rsgb | ||
# staging database gegevens | ||
staging.url=jdbc:oracle:thin:@localhost:1521:XE | ||
staging.url=jdbc:oracle:thin:@localhost:1521:XE?oracle.net.disableOob=true | ||
staging.user=jenkins_staging | ||
staging.password=jenkins_staging |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,9 @@ | ||
# ./brmo-loader/src/test/resources/local.oracle.properties | ||
rsgb.host=127.0.0.1 | ||
rsgb.port=1521 | ||
rsgb.jdbc.url=jdbc:oracle:thin:@127.0.0.1:1521:XE | ||
staging.jdbc.url=jdbc:oracle:thin:@127.0.0.1:1521:XE | ||
rsgbbgt.jdbc.url=jdbc:oracle:thin:@127.0.0.1:1521:XE | ||
topnl.jdbc.url=jdbc:oracle:thin:@127.0.0.1:1521:XE | ||
# bug in Docker that prevents Oracle Out-of-Band (in 19c+) to work, so we need to disable that for 21.x | ||
# see https://github.com/gvenzl/oci-oracle-xe/issues/43 | ||
rsgb.jdbc.url=jdbc:oracle:thin:@127.0.0.1:1521:XE?oracle.net.disableOob=true | ||
staging.jdbc.url=jdbc:oracle:thin:@127.0.0.1:1521:XE?oracle.net.disableOob=true | ||
rsgbbgt.jdbc.url=jdbc:oracle:thin:@127.0.0.1:1521:XE?oracle.net.disableOob=true | ||
topnl.jdbc.url=jdbc:oracle:thin:@127.0.0.1:1521:XE?oracle.net.disableOob=true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
# brmo-service/src/test/resources/local.oracle.properties | ||
rsgb.url=jdbc:oracle:thin:@127.0.0.1:1521:XE | ||
staging.url=jdbc:oracle:thin:@127.0.0.1:1521:XE | ||
rsgbbgt.jdbc.url=jdbc:oracle:thin:@127.0.0.1:1521:XE | ||
topnl.jdbc.url=jdbc:oracle:thin:@127.0.0.1:1521:XE | ||
# bug in Docker that prevents Oracle Out-of-Band (in 19c+) to work, so we need to disable that for 21.x | ||
# see https://github.com/gvenzl/oci-oracle-xe/issues/43 | ||
rsgb.url=jdbc:oracle:thin:@127.0.0.1:1521:XE?oracle.net.disableOob=true | ||
staging.url=jdbc:oracle:thin:@127.0.0.1:1521:XE?oracle.net.disableOob=true | ||
rsgbbgt.jdbc.url=jdbc:oracle:thin:@127.0.0.1:1521:XE?oracle.net.disableOob=true | ||
topnl.jdbc.url=jdbc:oracle:thin:@127.0.0.1:1521:XE?oracle.net.disableOob=true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
# brmo-soap/src/test/resources/local.oracle.properties | ||
rsgb.url=jdbc:oracle:thin:@127.0.0.1:1521:XE | ||
staging.url=jdbc:oracle:thin:@127.0.0.1:1521:XE | ||
# bug in Docker that prevents Oracle Out-of-Band (in 19c+) to work, so we need to disable that for 21.x | ||
# see https://github.com/gvenzl/oci-oracle-xe/issues/43 | ||
rsgb.url=jdbc:oracle:thin:@127.0.0.1:1521:XE?oracle.net.disableOob=true | ||
staging.url=jdbc:oracle:thin:@127.0.0.1:1521:XE?oracle.net.disableOob=true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
# brmo-stufbg204/src/test/resources/local.oracle.properties | ||
rsgb.url=jdbc:oracle:thin:@127.0.0.1:1521:XE | ||
staging.url=jdbc:oracle:thin:@127.0.0.1:1521:XE | ||
# bug in Docker that prevents Oracle Out-of-Band (in 19c+) to work, so we need to disable that for 21.x | ||
# see https://github.com/gvenzl/oci-oracle-xe/issues/43 | ||
rsgb.url=jdbc:oracle:thin:@127.0.0.1:1521:XE?oracle.net.disableOob=true | ||
staging.url=jdbc:oracle:thin:@127.0.0.1:1521:XE?oracle.net.disableOob=true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
# ./datamodel/src/test/resources/local.oracle.properties | ||
rsgb.url=jdbc:oracle:thin:@localhost:1521:XE | ||
staging.url=jdbc:oracle:thin:@localhost:1521:XE | ||
rsgbbgt.url=jdbc:oracle:thin:@localhost:1521:XE | ||
topnl.url=jdbc:oracle:thin:@localhost:1521:XE | ||
# bug in Docker that prevents Oracle Out-of-Band (in 19c+) to work, so we need to disable that for 21.x | ||
# see https://github.com/gvenzl/oci-oracle-xe/issues/43 | ||
rsgb.url=jdbc:oracle:thin:@localhost:1521:XE?oracle.net.disableOob=true | ||
staging.url=jdbc:oracle:thin:@localhost:1521:XE?oracle.net.disableOob=true | ||
rsgbbgt.url=jdbc:oracle:thin:@localhost:1521:XE?oracle.net.disableOob=true | ||
topnl.url=jdbc:oracle:thin:@localhost:1521:XE?oracle.net.disableOob=true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters