Skip to content

Commit cd9a86b

Browse files
marko-bekhtambellade
authored andcommitted
Do not use docker registry creds
as the proxy defined in the docker daemon should apply here anyway
1 parent acfde43 commit cd9a86b

File tree

2 files changed

+3
-9
lines changed

2 files changed

+3
-9
lines changed

Jenkinsfile

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -119,16 +119,12 @@ stage('Build') {
119119
state[buildEnv.tag]['containerName'] = "edb"
120120
break;
121121
case "sybase_jconn":
122-
docker.withRegistry('https://index.docker.io/v1/', 'hibernateci.hub.docker.com') {
123-
docker.image('nguoianphu/docker-sybase').pull()
124-
}
122+
docker.image('nguoianphu/docker-sybase').pull()
125123
sh "./docker_db.sh sybase"
126124
state[buildEnv.tag]['containerName'] = "sybase"
127125
break;
128126
case "cockroachdb":
129-
docker.withRegistry('https://index.docker.io/v1/', 'hibernateci.hub.docker.com') {
130-
docker.image('cockroachdb/cockroach:v23.1.12').pull()
131-
}
127+
docker.image('cockroachdb/cockroach:v23.1.12').pull()
132128
sh "./docker_db.sh cockroachdb"
133129
state[buildEnv.tag]['containerName'] = "cockroach"
134130
break;

ci/jpa-3.1-tck.Jenkinsfile

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,7 @@ pipeline {
4343
stage('Build') {
4444
steps {
4545
script {
46-
docker.withRegistry('https://index.docker.io/v1/', 'hibernateci.hub.docker.com') {
47-
docker.image('openjdk:11-jdk').pull()
48-
}
46+
docker.image('openjdk:11-jdk').pull()
4947
}
5048
dir('hibernate') {
5149
checkout scm

0 commit comments

Comments
 (0)