jenkins-wdocker/Jenkinsfile
Julien Cabillot b166db12a4
Some checks failed
perso/jenkins-wdocker/master There was a failure building this commit
test
2019-06-25 18:23:22 -04:00

35 lines
708 B
Groovy

pipeline {
environment {
registry = 'jcabillot/jenkins-wdocker'
registryCredential = 'dockerhub_jcabillot'
dockerImage = ''
}
agent any
stages {
stage('Clone repository') {
steps{
/* Let's make sure we have the repository cloned to our workspace */
checkout scm
}
}
stage('Build image') {
steps{
sh "docker build -t jcabillot/jenkins-wdocker ."
}
}
stage('Deploy Image') {
steps{
script {
withDockerRegistry(url: 'https://registry.hub.docker.com', credentialsId: 'docker-hub-credentials') {
sh 'docker push jcabillot/jenkins-wdocker'
}
}
}
}
}
}