From 6ace20114938fe50e3c320a818a3c48a6c6b69f3 Mon Sep 17 00:00:00 2001 From: Ali Mihandoost Date: Mon, 11 Nov 2024 04:55:25 +0330 Subject: [PATCH] release: v3.3.4 --- nginx-cdn/Dockerfile | 8 ++++---- nginx-core/Dockerfile | 8 ++++---- nginx-json/Dockerfile | 8 ++++---- nginx-pwa/Dockerfile | 8 ++++---- nginx-ws/Dockerfile | 8 ++++---- release-node.txt | 4 ++-- 6 files changed, 22 insertions(+), 22 deletions(-) diff --git a/nginx-cdn/Dockerfile b/nginx-cdn/Dockerfile index ffb341c..da1e509 100644 --- a/nginx-cdn/Dockerfile +++ b/nginx-cdn/Dockerfile @@ -1,4 +1,4 @@ -FROM ghcr.io/alwatr/nginx-core:3.3.3 +FROM ghcr.io/alwatr/nginx-core:3.3.4 # COPY etc/nginx/ /etc/nginx/ # COPY default-data/ /default-data/ @@ -29,9 +29,9 @@ ARG BUILD_REV ARG BUILD_DATE LABEL org.opencontainers.image.title="alwatr/nginx-cdn" \ org.opencontainers.image.description="This is a high-performance version of NGINX, which has been enhanced by Alwatr for the purpose of serving static content efficiently." \ - org.opencontainers.image.base.name="ghcr.io/alwatr/nginx-core:3.3.3" \ - org.opencontainers.image.version="3.3.3" \ - org.opencontainers.image.ref.name="3.3.3-nginx1.25.5-alpine-slim" \ + org.opencontainers.image.base.name="ghcr.io/alwatr/nginx-core:3.3.4" \ + org.opencontainers.image.version="3.3.4" \ + org.opencontainers.image.ref.name="3.3.4-nginx1.25.5-alpine-slim" \ org.opencontainers.image.licenses="MIT" \ org.opencontainers.image.created=${BUILD_DATE} \ org.opencontainers.image.revision=${BUILD_REV} \ diff --git a/nginx-core/Dockerfile b/nginx-core/Dockerfile index 1ea2eea..ec25912 100644 --- a/nginx-core/Dockerfile +++ b/nginx-core/Dockerfile @@ -1,4 +1,4 @@ -FROM ghcr.io/alwatr/nginx:3.3.3 +FROM ghcr.io/alwatr/nginx:3.3.4 RUN apk add --no-cache curl HEALTHCHECK --interval=30s --timeout=3s --start-period=5s --start-interval=1s --retries=3 CMD curl -fso /dev/null http://localhost/server-info || exit 1 @@ -53,9 +53,9 @@ ARG BUILD_REV ARG BUILD_DATE LABEL org.opencontainers.image.title="alwatr/nginx-core" \ org.opencontainers.image.description="This is a high-performance version of NGINX, which has been enhanced by Alwatr for the purpose of serving static content efficiently." \ - org.opencontainers.image.base.name="ghcr.io/alwatr/nginx:3.3.3" \ - org.opencontainers.image.version="3.3.3-nginx1.25.5" \ - org.opencontainers.image.ref.name="3.3.3-nginx1.25.5-alpine-slim" \ + org.opencontainers.image.base.name="ghcr.io/alwatr/nginx:3.3.4" \ + org.opencontainers.image.version="3.3.4-nginx1.25.5" \ + org.opencontainers.image.ref.name="3.3.4-nginx1.25.5-alpine-slim" \ org.opencontainers.image.licenses="MIT" \ org.opencontainers.image.created=${BUILD_DATE} \ org.opencontainers.image.revision=${BUILD_REV} \ diff --git a/nginx-json/Dockerfile b/nginx-json/Dockerfile index 45273d3..d7fb077 100644 --- a/nginx-json/Dockerfile +++ b/nginx-json/Dockerfile @@ -1,4 +1,4 @@ -FROM ghcr.io/alwatr/nginx-core:3.3.3 +FROM ghcr.io/alwatr/nginx-core:3.3.4 COPY etc/nginx/ /etc/nginx/ RUN set -eux; rm -rfv /default-data @@ -29,9 +29,9 @@ ARG BUILD_REV ARG BUILD_DATE LABEL org.opencontainers.image.title="alwatr/nginx-json" \ org.opencontainers.image.description="This is a high-performance version of NGINX, which has been enhanced by Alwatr for the purpose of serving JSON content efficiently." \ - org.opencontainers.image.base.name="ghcr.io/alwatr/nginx-core:3.3.3" \ - org.opencontainers.image.version="3.3.3" \ - org.opencontainers.image.ref.name="3.3.3-nginx1.25.5-alpine-slim" \ + org.opencontainers.image.base.name="ghcr.io/alwatr/nginx-core:3.3.4" \ + org.opencontainers.image.version="3.3.4" \ + org.opencontainers.image.ref.name="3.3.4-nginx1.25.5-alpine-slim" \ org.opencontainers.image.licenses="MIT" \ org.opencontainers.image.created=${BUILD_DATE} \ org.opencontainers.image.revision=${BUILD_REV} \ diff --git a/nginx-pwa/Dockerfile b/nginx-pwa/Dockerfile index f9d095f..fbebcf2 100644 --- a/nginx-pwa/Dockerfile +++ b/nginx-pwa/Dockerfile @@ -1,4 +1,4 @@ -FROM ghcr.io/alwatr/nginx-core:3.3.3 +FROM ghcr.io/alwatr/nginx-core:3.3.4 COPY etc/nginx/ /etc/nginx/ # COPY default-data/ /default-data/ @@ -30,9 +30,9 @@ ARG BUILD_REV ARG BUILD_DATE LABEL org.opencontainers.image.title="alwatr/nginx-pwa" \ org.opencontainers.image.description="This is a high-performance version of NGINX, which has been enhanced by Alwatr for the purpose of serving PWA efficiently." \ - org.opencontainers.image.base.name="ghcr.io/alwatr/nginx-core:3.3.3" \ - org.opencontainers.image.version="3.3.3" \ - org.opencontainers.image.ref.name="3.3.3-nginx1.25.5-alpine-slim" \ + org.opencontainers.image.base.name="ghcr.io/alwatr/nginx-core:3.3.4" \ + org.opencontainers.image.version="3.3.4" \ + org.opencontainers.image.ref.name="3.3.4-nginx1.25.5-alpine-slim" \ org.opencontainers.image.licenses="MIT" \ org.opencontainers.image.created=${BUILD_DATE} \ org.opencontainers.image.revision=${BUILD_REV} \ diff --git a/nginx-ws/Dockerfile b/nginx-ws/Dockerfile index 85dd1bc..5553ec6 100644 --- a/nginx-ws/Dockerfile +++ b/nginx-ws/Dockerfile @@ -1,4 +1,4 @@ -FROM ghcr.io/alwatr/nginx-core:3.3.3 +FROM ghcr.io/alwatr/nginx-core:3.3.4 COPY etc/nginx/ /etc/nginx/ # COPY default-data/ /default-data/ @@ -29,9 +29,9 @@ ARG BUILD_REV ARG BUILD_DATE LABEL org.opencontainers.image.title="alwatr/nginx-ws" \ org.opencontainers.image.description="This is a high-performance version of NGINX, which has been enhanced by Alwatr for the purpose of serving static website content efficiently." \ - org.opencontainers.image.base.name="ghcr.io/alwatr/nginx-core:3.3.3" \ - org.opencontainers.image.version="3.3.3" \ - org.opencontainers.image.ref.name="3.3.3-nginx1.25.5-alpine-slim" \ + org.opencontainers.image.base.name="ghcr.io/alwatr/nginx-core:3.3.4" \ + org.opencontainers.image.version="3.3.4" \ + org.opencontainers.image.ref.name="3.3.4-nginx1.25.5-alpine-slim" \ org.opencontainers.image.licenses="MIT" \ org.opencontainers.image.created=${BUILD_DATE} \ org.opencontainers.image.revision=${BUILD_REV} \ diff --git a/release-node.txt b/release-node.txt index 2c01c47..ead83ec 100644 --- a/release-node.txt +++ b/release-node.txt @@ -1,5 +1,5 @@ -current_version=3.3.2 -new_version=3.3.3 +current_version=3.3.3 +new_version=3.3.4 find . -name 'Dockerfile' -exec sed -i '' "s/$current_version/$new_version/g" {} + git commit -am "release: v$new_version" git push