From 96c51b9aefba4d91050b369e1f4766fe06ab07a4 Mon Sep 17 00:00:00 2001 From: Ben Green Date: Sat, 28 Aug 2021 11:55:31 +0100 Subject: [PATCH 1/3] Bumping version to 2.2.8 --- VERSION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VERSION b/VERSION index b539ade..eb430cb 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.2.7 \ No newline at end of file +2.2.8 \ No newline at end of file From f24ede8380c7daed6de4e065ee90ebbf7a718eec Mon Sep 17 00:00:00 2001 From: Ben Green Date: Sat, 28 Aug 2021 11:55:40 +0100 Subject: [PATCH 2/3] Using latest base image --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 201513a..3b6fd23 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM bfren/nginx:alpine3.14-2.2.6 +FROM bfren/nginx:alpine3.14-2.2.7 # port 80 is already exposed by the base image EXPOSE 443 From bf9ccaf7f4f085124db386d252934ba56307cb67 Mon Sep 17 00:00:00 2001 From: Ben Green Date: Sat, 28 Aug 2021 11:55:44 +0100 Subject: [PATCH 3/3] Removing Dockerfile automated --- Dockerfile-automated | 28 ---------------------------- 1 file changed, 28 deletions(-) delete mode 100644 Dockerfile-automated diff --git a/Dockerfile-automated b/Dockerfile-automated deleted file mode 100644 index 58ceeaf..0000000 --- a/Dockerfile-automated +++ /dev/null @@ -1,28 +0,0 @@ -FROM bfren/nginx:auto - -# port 80 is already exposed by the base image -EXPOSE 443 - -ENV \ - # used for renewal notification emails - PROXY_LETS_ENCRYPT_EMAIL= \ - # the base URI of the proxy server (will be used when SSL bindings fail) - PROXY_URI= \ - # clean all config and certificates before doing anything else - PROXY_CLEAN_INSTALL=0 \ - # set to 1 to use live instead of staging server - PROXY_LETS_ENCRYPT_LIVE=0 \ - # set to the number of bits to use for generating private key - PROXY_SSL_KEY_BITS=4096 \ - # set to the number of bits to use for generating DHPARAM - PROXY_SSL_DHPARAM_BITS=4096 \ - # canonical domain name redirection - PROXY_SSL_REDIRECT_TO_CANONICAL=0 \ - # set to true to skip local HTTP token check - PROXY_GETSSL_SKIP_HTTP_TOKEN_CHECK="false" - -COPY ./overlay / - -RUN bf-install - -VOLUME [ "/ssl", "/sites" ]