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

15 lines
301 B
Plaintext
Executable File

pipeline {
agent any
stages {
stage('Make https cert for my domains') {
steps {
dir("/_programs_/zaklik-by-spring-boot/lets-encrypt"){
sh "docker compose --file lets-encrypt.yml --env-file lets.env run --rm certbot renew"
}
}
}
}
}