jenkins-wdocker/Jenkinsfile

33 lines
720 B
Plaintext
Raw Normal View History

2019-06-20 13:03:21 -04:00
pipeline {
environment {
registry = 'jcabillot/jenkins-wdocker'
registryCredential = 'dockerhub_jcabillot'
dockerImage = ''
}
agent any
stages {
2019-06-25 18:16:53 -04:00
stage('Clone repository') {
/* Let's make sure we have the repository cloned to our workspace */
checkout scm
2019-06-20 13:03:21 -04:00
}
2019-06-25 18:16:53 -04:00
stage('Build image') {
/* This builds the actual image; synonymous to
* docker build on the command line */
app = docker.build("jcabillot/jenkins-wdocker")
}
2019-06-20 13:03:21 -04:00
stage('Deploy Image') {
steps{
script {
2019-06-25 18:16:53 -04:00
docker.withRegistry('https://registry.hub.docker.com', 'docker-hub-credentials') {
app.push("latest")
2019-06-20 13:03:21 -04:00
}
}
}
}
}
}