create docker image for acme-certbot

This commit is contained in:
2020-05-26 08:14:22 -04:00
parent 9e1743e1b5
commit 10b5a1e012
11 changed files with 96 additions and 1 deletions

View File

@@ -0,0 +1,17 @@
pipeline {
agent { label 'docker' }
triggers {
cron('@monthly')
}
options {
disableConcurrentBuilds()
buildDiscarder(logRotator(numToKeepStr: '2'))
}
stages {
stage('Build Image') {
steps {
build job: '_build_image', parameters: [string(name: 'IMAGE', value: 'acme-certbot')], quietPeriod: 1
}
}
}
}