Add deploy
Some checks failed
perso/htpasswd/master There was a failure building this commit

This commit is contained in:
Julien Cabillot 2019-06-20 12:52:52 -04:00
parent 721d36373e
commit 72818a07cc
Signed by: jcabillot
GPG Key ID: EF8F0EB0565E282F

9
Jenkinsfile vendored
View File

@ -15,5 +15,14 @@ pipeline {
}
}
}
stage('Deploy Image') {
steps{
script {
docker.withRegistry('', registryCredential) {
dockerImage.push()
}
}
}
}
}
}