rename letsencrypt-2 image folder to acme-nginx and add jenkins file for building image

This commit is contained in:
2020-05-23 23:18:26 -04:00
parent f9766b6ece
commit 3e656fbed4
4 changed files with 17 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
pipeline {
agent { label 'docker' }
triggers {
cron('@daily')
}
options {
disableConcurrentBuilds()
buildDiscarder(logRotator(numToKeepStr: '2'))
}
stages {
stage('Build Image') {
steps {
build job: '_build_image', parameters: [string(name: 'IMAGE', value: 'acme-nginx')], quietPeriod: 1
}
}
}
}

0
dockerfiles/tasks/apidocjs/build.sh Executable file → Normal file
View File