diff --git a/Jenkinsfile b/Jenkinsfile index 42e457aa5..2ea98e5f5 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -25,6 +25,7 @@ pipeline { withCredentials([usernamePassword(credentialsId: 'DOCKER_HUB_GLOBAL', passwordVariable: 'dockerHubPassword', usernameVariable: 'dockerHubUser')]) { sh "docker login -u ${env.dockerHubUser} -p ${env.dockerHubPassword}" + sh 'docker tag spring-petclinic:latest mrcool435/spring-petclinic:latest' sh 'docker push mrcool435/spring-petclinic:latest' } }