Skip to content

Commit f7243de

Browse files
committed
Merge branch 'master' of https://github.com/jlesage/docker-nginx-proxy-manager into crowdsec_rework
2 parents 6c055e2 + e9261ce commit f7243de

File tree

4 files changed

+21
-22
lines changed

4 files changed

+21
-22
lines changed

.github/workflows/build-image.yml

+9-17
Original file line numberDiff line numberDiff line change
@@ -23,23 +23,15 @@ jobs:
2323

2424
steps:
2525
- name: Free disk space
26-
run: |
27-
# Free disk space.
28-
echo "::group::Before"
29-
df -h /
30-
echo "::endgroup::"
31-
echo "::group::Removing unneeded softwares and files..."
32-
for DIR in /usr/local/lib/android /usr/share/dotnet /opt/ghc
33-
do
34-
if [ -d "$DIR" ]; then
35-
echo "Removing $DIR..."
36-
sudo rm -r "$DIR"
37-
fi
38-
done
39-
echo "::endgroup::"
40-
echo "::group::After"
41-
df -h /
42-
echo "::endgroup::"
26+
uses: jlumbroso/free-disk-space@main
27+
with:
28+
tool-cache: true
29+
android: true
30+
dotnet: true
31+
haskell: true
32+
large-packages: true
33+
docker-images: true
34+
swap-storage: false
4335

4436
- name: Prepare
4537
id: prep

Dockerfile

+4-4
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@
88
ARG DOCKER_IMAGE_VERSION=
99

1010
# Define software versions.
11-
ARG OPENRESTY_VERSION=1.19.9.1
12-
ARG CROWDSEC_OPENRESTY_BOUNCER_VERSION=1.0.2
13-
ARG NGINX_PROXY_MANAGER_VERSION=2.11.3
11+
ARG OPENRESTY_VERSION=1.27.1.1
12+
ARG NGINX_PROXY_MANAGER_VERSION=2.12.1
1413
ARG NGINX_HTTP_GEOIP2_MODULE_VERSION=3.3
1514
ARG LIBMAXMINDDB_VERSION=1.5.0
1615
ARG BCRYPT_TOOL_VERSION=1.1.2
16+
ARG CROWDSEC_OPENRESTY_BOUNCER_VERSION=1.0.2
1717

1818
# Define software download URLs.
1919
ARG OPENRESTY_URL=https://openresty.org/download/openresty-${OPENRESTY_VERSION}.tar.gz
@@ -89,7 +89,7 @@ COPY src/cs-openresty-bouncer /build
8989
RUN /build/build.sh "$CROWDSEC_OPENRESTY_BOUNCER_URL"
9090

9191
# Pull base image.
92-
FROM jlesage/baseimage:alpine-3.16-v3.6.2
92+
FROM jlesage/baseimage:alpine-3.16-v3.6.4
9393

9494
ARG NGINX_PROXY_MANAGER_VERSION
9595
ARG DOCKER_IMAGE_VERSION

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ of this parameter has the format `<VARIABLE_NAME>=<VALUE>`.
136136
|`TZ`| [TimeZone](http://en.wikipedia.org/wiki/List_of_tz_database_time_zones) used by the container. Timezone can also be set by mapping `/etc/localtime` between the host and the container. | `Etc/UTC` |
137137
|`KEEP_APP_RUNNING`| When set to `1`, the application will be automatically restarted when it crashes or terminates. | `0` |
138138
|`APP_NICENESS`| Priority at which the application should run. A niceness value of -20 is the highest priority and 19 is the lowest priority. The default niceness value is 0. **NOTE**: A negative niceness (priority increase) requires additional permissions. In this case, the container should be run with the docker option `--cap-add=SYS_NICE`. | `0` |
139-
|`INSTALL_PACKAGES`| Space-separated list of packages to install during the startup of the container. List of available packages can be found at https://mirrors.alpinelinux.org. **ATTENTION**: Container functionality can be affected when installing a package that overrides existing container files (e.g. binaries). | (no value) |
139+
|`INSTALL_PACKAGES`| Space-separated list of packages to install during the startup of the container. List of available packages can be found at https://pkgs.alpinelinux.org. **ATTENTION**: Container functionality can be affected when installing a package that overrides existing container files (e.g. binaries). | (no value) |
140140
|`PACKAGES_MIRROR`| Mirror of the repository to use when installing packages. List of mirrors is available at https://mirrors.alpinelinux.org. | (no value) |
141141
|`CONTAINER_DEBUG`| Set to `1` to enable debug logging. | `0` |
142142
|`DISABLE_IPV6`| When set to `1`, IPv6 support is disabled. This is needed when IPv6 is not enabled/supported on the host. | `0` |

appdefs.yml

+7
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,13 @@ app:
9898
- `CONTAINER_NAME` is the name of the running container.
9999
- `USER_EMAIL` is the email of the address to reset the password.
100100
changelog:
101+
- version: 24.12.1
102+
date: 2024-12-07
103+
changes:
104+
- 'Updated Nginx Proxy Manager to version 2.12.1.'
105+
- 'Updated OpenResty to version 1.27.1.1.'
106+
- 'Updated baseimage to version 3.6.4, which brings the following changes:'
107+
- '2:Rebuild against latest distro images to get security fixes.'
101108
- version: 24.07.1
102109
date: 2024-07-05
103110
changes:

0 commit comments

Comments
 (0)