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

37 lines
762 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{
/* This builds the actual image; synonymous to
* docker build on the command line */
app = docker.build("jcabillot/jenkins-wdocker")
}
}
stage('Deploy Image') {
steps{
script {
docker.withRegistry('https://registry.hub.docker.com', 'docker-hub-credentials') {
app.push("latest")
}
}
}
}
}
}