proxy-nginx/deploy-this/lets-encrypt/lets-encrypt-renew.jenkinsfile

21 lines
405 B
Plaintext
Executable File

pipeline {
agent any
properties([
pipelineTriggers([
cron('H H 1,6,11,16,21,26 * *') // Lepsza wersja
])
])
stages {
stage('Make https cert for my domains') {
steps {
dir("/_programs_/proxy-nginx/deploy-this/lets-encrypt"){
sh "docker compose --file lets-encrypt.yml --env-file lets.env run --rm certbot renew"
}
}
}
}
}