File tree Expand file tree Collapse file tree 4 files changed +7
-4
lines changed Expand file tree Collapse file tree 4 files changed +7
-4
lines changed Original file line number Diff line number Diff line change 11pipeline {
22 triggers {
3- cron(' H 3 * * *' )
3+ cron( env . BRANCH_NAME . equals( ' master ' ) ? ' H 3 * * *' : ' ' )
44 }
55 agent {
66 label ' docker-multiarch'
@@ -15,8 +15,9 @@ pipeline {
1515 BUILDX_NAME = " ${ IMAGE} _${ GIT_BRANCH} "
1616 BRANCH_LOWER = " ${ BRANCH_NAME.toLowerCase().replaceAll('/', '-')} "
1717 // Software versions; OpenResty does not support Lua >= 5.2
18- OPENRESTY_VERSION = ' 1.19.9 .1'
18+ OPENRESTY_VERSION = ' 1.21.4 .1'
1919 CROWDSEC_OPENRESTY_BOUNCER_VERSION = ' 0.1.11'
20+
2021 LUA_VERSION = ' 5.1.5'
2122 LUAROCKS_VERSION = ' 3.3.1'
2223 }
@@ -36,6 +37,7 @@ pipeline {
3637 env. BUILDX_PUSH_TAGS_ACMESH_GOLANG = " -t docker.io/nginxproxymanager/${ IMAGE} :acmesh-golang"
3738 env. BUILDX_PUSH_TAGS_CERTBOT_NODE = " -t docker.io/nginxproxymanager/${ IMAGE} :certbot-node"
3839 }
40+ sh ' env'
3941 }
4042 }
4143 stage(' Other' ) {
Original file line number Diff line number Diff line change 11# nginx-full
22
33<p >
4- <img src =" https://img.shields.io/badge/openresty-1.19.9 .1-green.svg?style=for-the-badge " >
4+ <img src =" https://img.shields.io/badge/openresty-1.21.4 .1-green.svg?style=for-the-badge " >
55 <img src =" https://img.shields.io/badge/lua-5.1.5-green.svg?style=for-the-badge " >
66 <img src =" https://img.shields.io/badge/luarocks-3.3.1-green.svg?style=for-the-badge " >
77 <a href =" https://hub.docker.com/repository/docker/nginxproxymanager/nginx-full " >
Original file line number Diff line number Diff line change @@ -33,6 +33,7 @@ COPY ./files/.bashrc.acmesh-golang /root/.bashrc
3333RUN cd /usr && wget -O- -nv https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s v1.50.1
3434RUN go install github.com/kyoh86/richgo@latest \
3535 && go install github.com/sonatype-nexus-community/nancy@latest \
36+ && go install github.com/mfridman/tparse@latest \
3637 && rm -rf /root/.cache/go-build
3738
3839LABEL org.label-schema.cmd="docker run --rm -ti nginxproxymanager/nginx-full:acmesh-golang"
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ RESET='\E[0m'
88
99DOCKER_IMAGE=nginxproxymanager/nginx-full
1010
11- export OPENRESTY_VERSION=1.19.9 .1
11+ export OPENRESTY_VERSION=1.21.4 .1
1212export CROWDSEC_OPENRESTY_BOUNCER_VERSION=0.1.11
1313export LUA_VERSION=5.1.5
1414export LUAROCKS_VERSION=3.3.1
You can’t perform that action at this time.
0 commit comments