for test
All checks were successful
perso/jenkins-wdocker/master This commit looks good

This commit is contained in:
Julien Cabillot 2019-06-26 19:16:21 -04:00
parent 43964d454f
commit 7bda745a5f

2
Jenkinsfile vendored
View File

@ -25,7 +25,7 @@ pipeline {
script { script {
withCredentials([usernamePassword(credentialsId: 'dockerhub_jcabillot', usernameVariable: 'DOCKER_USER', passwordVariable: 'DOCKER_PASS')]) { withCredentials([usernamePassword(credentialsId: 'dockerhub_jcabillot', usernameVariable: 'DOCKER_USER', passwordVariable: 'DOCKER_PASS')]) {
sh 'docker login --username ${DOCKER_USER} --password ${DOCKER_PASS}' sh 'docker login --username ${DOCKER_USER} --password ${DOCKER_PASS}'
sh 'docker push jcabillot/jenkins-wdocker' sh 'docker push ${dockerImage}'
} }
} }
} }