create docker image for acme-certbot
This commit is contained in:
17
dockerfiles/tasks/acme-certbot/Jenkinsfile
vendored
Normal file
17
dockerfiles/tasks/acme-certbot/Jenkinsfile
vendored
Normal 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
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user