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 1
1
pipeline {
2
2
triggers {
3
- cron(' H 3 * * *' )
3
+ cron( env . BRANCH_NAME . equals( ' master ' ) ? ' H 3 * * *' : ' ' )
4
4
}
5
5
agent {
6
6
label ' docker-multiarch'
@@ -15,8 +15,9 @@ pipeline {
15
15
BUILDX_NAME = " ${ IMAGE} _${ GIT_BRANCH} "
16
16
BRANCH_LOWER = " ${ BRANCH_NAME.toLowerCase().replaceAll('/', '-')} "
17
17
// Software versions; OpenResty does not support Lua >= 5.2
18
- OPENRESTY_VERSION = ' 1.19.9 .1'
18
+ OPENRESTY_VERSION = ' 1.21.4 .1'
19
19
CROWDSEC_OPENRESTY_BOUNCER_VERSION = ' 0.1.11'
20
+
20
21
LUA_VERSION = ' 5.1.5'
21
22
LUAROCKS_VERSION = ' 3.3.1'
22
23
}
@@ -36,6 +37,7 @@ pipeline {
36
37
env. BUILDX_PUSH_TAGS_ACMESH_GOLANG = " -t docker.io/nginxproxymanager/${ IMAGE} :acmesh-golang"
37
38
env. BUILDX_PUSH_TAGS_CERTBOT_NODE = " -t docker.io/nginxproxymanager/${ IMAGE} :certbot-node"
38
39
}
40
+ sh ' env'
39
41
}
40
42
}
41
43
stage(' Other' ) {
Original file line number Diff line number Diff line change 1
1
# nginx-full
2
2
3
3
<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 " >
5
5
<img src =" https://img.shields.io/badge/lua-5.1.5-green.svg?style=for-the-badge " >
6
6
<img src =" https://img.shields.io/badge/luarocks-3.3.1-green.svg?style=for-the-badge " >
7
7
<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
33
33
RUN cd /usr && wget -O- -nv https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s v1.50.1
34
34
RUN go install github.com/kyoh86/richgo@latest \
35
35
&& go install github.com/sonatype-nexus-community/nancy@latest \
36
+ && go install github.com/mfridman/tparse@latest \
36
37
&& rm -rf /root/.cache/go-build
37
38
38
39
LABEL 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'
8
8
9
9
DOCKER_IMAGE=nginxproxymanager/nginx-full
10
10
11
- export OPENRESTY_VERSION=1.19.9 .1
11
+ export OPENRESTY_VERSION=1.21.4 .1
12
12
export CROWDSEC_OPENRESTY_BOUNCER_VERSION=0.1.11
13
13
export LUA_VERSION=5.1.5
14
14
export LUAROCKS_VERSION=3.3.1
You can’t perform that action at this time.
0 commit comments