Skip to content

Commit 15b7323

Browse files
authored
Merge branch 'master' into master
2 parents 1ca7331 + 1768a31 commit 15b7323

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

.jenkins/Jenkinsfile

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
pipeline {
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') {

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
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">

docker/Dockerfile.acmesh-golang

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ COPY ./files/.bashrc.acmesh-golang /root/.bashrc
3333
RUN cd /usr && wget -O- -nv https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s v1.50.1
3434
RUN 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

3839
LABEL org.label-schema.cmd="docker run --rm -ti nginxproxymanager/nginx-full:acmesh-golang"

local-build.sh

100755100644
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ RESET='\E[0m'
88

99
DOCKER_IMAGE=nginxproxymanager/nginx-full
1010

11-
export OPENRESTY_VERSION=1.19.9.1
11+
export OPENRESTY_VERSION=1.21.4.1
1212
export CROWDSEC_OPENRESTY_BOUNCER_VERSION=0.1.11
1313
export LUA_VERSION=5.1.5
1414
export LUAROCKS_VERSION=3.3.1

0 commit comments

Comments
 (0)