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