Jenkins scripted multibranch pipeline

This commit is contained in:
Dominik Chilla 2019-06-14 22:21:51 +02:00
parent 9c0b4b943a
commit e1ebf457a7

2
Jenkinsfile vendored
View File

@ -44,7 +44,7 @@ pipeline {
} }
stage('Cleanup') { stage('Cleanup') {
steps { steps {
sh '/usr/bin/docker rmi ${env.imageName}:${env.BRANCH_NAME}' sh '/usr/bin/docker rmi "${imageName}:${BRANCH_NAME}"'
} }
} }
} }