This commit is contained in:
parent
ae9f93ee33
commit
6181a8f35e
18
Jenkinsfile
vendored
18
Jenkinsfile
vendored
@ -8,18 +8,22 @@ pipeline {
|
||||
agent any
|
||||
|
||||
stages {
|
||||
stage('Building image') {
|
||||
steps{
|
||||
script {
|
||||
dockerImage = docker.build registry + ":latest"
|
||||
}
|
||||
stage('Clone repository') {
|
||||
/* Let's make sure we have the repository cloned to our workspace */
|
||||
checkout scm
|
||||
}
|
||||
|
||||
stage('Build image') {
|
||||
/* 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('', registryCredential) {
|
||||
dockerImage.push()
|
||||
docker.withRegistry('https://registry.hub.docker.com', 'docker-hub-credentials') {
|
||||
app.push("latest")
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user