Skip to content

Commit

Permalink
Upgraded Nginx Proxy Manager to version 2.0.5.
Browse files Browse the repository at this point in the history
  • Loading branch information
jlesage committed Nov 22, 2018
1 parent 7edb5f8 commit 0a71884
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
FROM jlesage/baseimage:alpine-3.8-v2.4.1

# Define software versions.
ARG NGINX_PROXY_MANAGER_VERSION=2.0.3
ARG NGINX_PROXY_MANAGER_VERSION=2.0.5

# Define software download URLs.
ARG NGINX_PROXY_MANAGER_URL=https://github.com/jc21/nginx-proxy-manager/archive/${NGINX_PROXY_MANAGER_VERSION}.tar.gz
Expand Down Expand Up @@ -69,9 +69,6 @@ RUN \
mkdir nginx-proxy-manager && \
curl -# -L ${NGINX_PROXY_MANAGER_URL} | tar xz --strip 1 -C nginx-proxy-manager && \

# Patch.
curl -# -L https://github.com/jlesage/nginx-proxy-manager/commit/20fd18565.patch | patch -d nginx-proxy-manager -p1 || true && \

# Build Nginx Proxy Manager.
echo "Building Nginx Proxy Manager..." && \
cp -r nginx-proxy-manager /app && \
Expand Down Expand Up @@ -116,6 +113,8 @@ RUN \
# Make sure nginx loads the stream module.
sed-patch '/daemon off;/a load_module /usr/lib/nginx/modules/ngx_stream_module.so;' /etc/nginx/nginx.conf && \

sed-patch 's|include conf.d/include/ssl-ciphers.conf;|ssl_ciphers aNULL;|' /etc/nginx/conf.d/default.conf && \

# Redirect `/data' to '/config'.
ln -s /config /data && \

Expand Down

0 comments on commit 0a71884

Please sign in to comment.