From 7bda745a5f2775e4c47f6b63516eb011a2c0b030 Mon Sep 17 00:00:00 2001 From: Julien Cabillot Date: Wed, 26 Jun 2019 19:16:21 -0400 Subject: [PATCH] for test --- Jenkinsfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 560cfa8..7aabd50 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -24,9 +24,9 @@ pipeline { steps{ script { withCredentials([usernamePassword(credentialsId: 'dockerhub_jcabillot', usernameVariable: 'DOCKER_USER', passwordVariable: 'DOCKER_PASS')]) { - sh 'docker login --username ${DOCKER_USER} --password ${DOCKER_PASS}' - sh 'docker push jcabillot/jenkins-wdocker' - } + sh 'docker login --username ${DOCKER_USER} --password ${DOCKER_PASS}' + sh 'docker push ${dockerImage}' + } } } }