vn-autoconfig/Jenkinsfile

38 lines
913 B
Plaintext
Raw Normal View History

2020-01-15 10:25:33 +00:00
#!/usr/bin/env groovy
pipeline {
agent any
environment {
PROJECT_NAME = 'vn-autoconfig'
}
stages {
stage('Build') {
when {
branch 'master'
}
environment {
CREDS = credentials('docker-registry')
}
steps {
sh 'docker login --username $CREDS_USR --password $CREDS_PSW $REGISTRY'
sh 'docker-compose build --parallel'
sh 'docker-compose push'
}
}
stage('Deploy') {
when {
branch 'master'
}
steps {
2020-01-28 14:08:01 +00:00
sh "docker stack deploy --with-registry-auth --prune --compose-file docker-compose.yml ${env.PROJECT_NAME}"
2020-01-15 10:25:33 +00:00
}
}
}
post {
always {
script {
2020-01-30 15:07:40 +00:00
util.sendEmail()
2020-01-15 10:25:33 +00:00
}
}
}
}