Switch from full to regular oracle images

This commit is contained in:
Christian Beikov 2024-03-04 16:21:59 +01:00
parent 5a36652b20
commit 6653160d88
2 changed files with 3 additions and 3 deletions

View File

@ -775,7 +775,7 @@ oracle_21() {
--health-interval 5s \
--health-timeout 5s \
--health-retries 10 \
docker.io/gvenzl/oracle-xe:21.3.0-full
docker.io/gvenzl/oracle-xe:21.3.0
oracle_setup
}
@ -789,7 +789,7 @@ oracle_23() {
--health-interval 5s \
--health-timeout 5s \
--health-retries 10 \
docker.io/gvenzl/oracle-free:23-full
docker.io/gvenzl/oracle-free:23
oracle_free_setup
}

View File

@ -139,7 +139,7 @@ stage('Build') {
break;
case "oracle_21":
docker.withRegistry('https://index.docker.io/v1/', 'hibernateci.hub.docker.com') {
docker.image('gvenzl/oracle-xe:21.3.0-full').pull()
docker.image('gvenzl/oracle-xe:21.3.0').pull()
}
sh "./docker_db.sh oracle_21"
state[buildEnv.tag]['containerName'] = "oracle"