18 lines
341 B
Plaintext
18 lines
341 B
Plaintext
pipeline {
|
|
agent { label 'docker' }
|
|
triggers {
|
|
cron('@monthly')
|
|
}
|
|
options {
|
|
disableConcurrentBuilds()
|
|
buildDiscarder(logRotator(numToKeepStr: '2'))
|
|
}
|
|
stages {
|
|
stage('Update Certificates') {
|
|
steps {
|
|
sh 'echo TODO: run docker'
|
|
}
|
|
}
|
|
}
|
|
}
|