diff --git a/Jenkinsfile b/Jenkinsfile index 663dc16..d850ff0 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -48,7 +48,7 @@ pipeline { steps { script { try{ - docker.withRegistry('https://registry.hub.docker.com/', "dockerhub-$maintainer") { + docker.withRegistry('https://registry.hub.docker.com/', "dockerhub-tier") { baseImg = docker.build("$maintainer/$imagename", "--no-cache .") } } catch(error) { @@ -64,7 +64,7 @@ pipeline { stage('Push') { steps { script { - docker.withRegistry('https://registry.hub.docker.com/', "dockerhub-$maintainer") { + docker.withRegistry('https://registry.hub.docker.com/', "dockerhub-tier") { baseImg.push("$tag") } }