From 1fd4118cc8cbd5c38e749451b73a6c89277f04a5 Mon Sep 17 00:00:00 2001 From: Konstantin Demin Date: Fri, 8 Nov 2024 14:19:37 +0300 Subject: [PATCH] bump version to 0.0.6 --- build-scripts/image-base.sh | 2 +- build-scripts/image-deps.sh | 2 +- build-scripts/image.sh | 2 +- doc/examples/basic/Dockerfile | 2 +- doc/examples/basic/docker-compose.yml | 2 +- doc/examples/config-template/README.md | 2 +- doc/examples/config-template/docker-compose.yml | 2 +- doc/examples/j2cfg-override/Dockerfile | 2 +- doc/examples/j2cfg-override/docker-compose.yml | 2 +- doc/examples/njs/Dockerfile | 2 +- doc/examples/njs/README.md | 2 +- doc/examples/perl/Dockerfile | 2 +- doc/examples/perl/README.md | 2 +- doc/examples/ssl/Dockerfile | 2 +- doc/examples/ssl/docker-compose.yml | 2 +- doc/examples/static-template/Dockerfile | 2 +- doc/examples/static-template/docker-compose.yml | 2 +- 17 files changed, 17 insertions(+), 17 deletions(-) diff --git a/build-scripts/image-base.sh b/build-scripts/image-base.sh index 29eab34..710318c 100755 --- a/build-scripts/image-base.sh +++ b/build-scripts/image-base.sh @@ -2,7 +2,7 @@ set -ef cd "$(dirname "$0")/.." -IMAGE_VERSION="${IMAGE_VERSION:-v0.0.5}" +IMAGE_VERSION="${IMAGE_VERSION:-v0.0.6}" set -a BUILDAH_FORMAT="${BUILDAH_FORMAT:-docker}" diff --git a/build-scripts/image-deps.sh b/build-scripts/image-deps.sh index 2d4d945..f09ae70 100755 --- a/build-scripts/image-deps.sh +++ b/build-scripts/image-deps.sh @@ -2,7 +2,7 @@ set -ef cd "$(dirname "$0")/.." -IMAGE_VERSION="${IMAGE_VERSION:-v0.0.5}" +IMAGE_VERSION="${IMAGE_VERSION:-v0.0.6}" set -a BUILDAH_FORMAT="${BUILDAH_FORMAT:-docker}" diff --git a/build-scripts/image.sh b/build-scripts/image.sh index b876950..cf42051 100755 --- a/build-scripts/image.sh +++ b/build-scripts/image.sh @@ -2,7 +2,7 @@ set -ef cd "$(dirname "$0")/.." -IMAGE_VERSION="${IMAGE_VERSION:-v0.0.5}" +IMAGE_VERSION="${IMAGE_VERSION:-v0.0.6}" set -a BUILDAH_FORMAT="${BUILDAH_FORMAT:-docker}" diff --git a/doc/examples/basic/Dockerfile b/doc/examples/basic/Dockerfile index b128414..034075b 100644 --- a/doc/examples/basic/Dockerfile +++ b/doc/examples/basic/Dockerfile @@ -1,4 +1,4 @@ -FROM docker.io/rockdrilla/angie-conv:v0.0.5 +FROM docker.io/rockdrilla/angie-conv:v0.0.6 SHELL [ "/bin/sh", "-ec" ] COPY /site/ /etc/angie/site/ diff --git a/doc/examples/basic/docker-compose.yml b/doc/examples/basic/docker-compose.yml index fb16607..84d6aa9 100644 --- a/doc/examples/basic/docker-compose.yml +++ b/doc/examples/basic/docker-compose.yml @@ -4,7 +4,7 @@ services: angie-conv-example-basic: container_name: angie-conv-example-basic - image: docker.io/rockdrilla/angie-conv:v0.0.5 + image: docker.io/rockdrilla/angie-conv:v0.0.6 environment: NGX_HTTP_NO_PROXY: 1 ports: diff --git a/doc/examples/config-template/README.md b/doc/examples/config-template/README.md index 728e279..b3401bd 100644 --- a/doc/examples/config-template/README.md +++ b/doc/examples/config-template/README.md @@ -58,7 +58,7 @@ services: my-cache: container_name: my-cache - image: docker.io/rockdrilla/angie-conv:v0.0.5 + image: docker.io/rockdrilla/angie-conv:v0.0.6 restart: always privileged: true stop_grace_period: 15s diff --git a/doc/examples/config-template/docker-compose.yml b/doc/examples/config-template/docker-compose.yml index e3327b8..2c1ff5e 100644 --- a/doc/examples/config-template/docker-compose.yml +++ b/doc/examples/config-template/docker-compose.yml @@ -4,7 +4,7 @@ services: my-cache: container_name: my-cache - image: docker.io/rockdrilla/angie-conv:v0.0.5 + image: docker.io/rockdrilla/angie-conv:v0.0.6 restart: always privileged: true stop_grace_period: 15s diff --git a/doc/examples/j2cfg-override/Dockerfile b/doc/examples/j2cfg-override/Dockerfile index 9397815..c124ee8 100644 --- a/doc/examples/j2cfg-override/Dockerfile +++ b/doc/examples/j2cfg-override/Dockerfile @@ -1,4 +1,4 @@ -FROM docker.io/rockdrilla/angie-conv:v0.0.5 +FROM docker.io/rockdrilla/angie-conv:v0.0.6 SHELL [ "/bin/sh", "-ec" ] COPY /j2cfg/ /etc/angie/j2cfg/ diff --git a/doc/examples/j2cfg-override/docker-compose.yml b/doc/examples/j2cfg-override/docker-compose.yml index 0b348a8..d606940 100644 --- a/doc/examples/j2cfg-override/docker-compose.yml +++ b/doc/examples/j2cfg-override/docker-compose.yml @@ -4,7 +4,7 @@ services: angie-conv-example-cfg-override: container_name: angie-conv-example-cfg-override - image: docker.io/rockdrilla/angie-conv:v0.0.5 + image: docker.io/rockdrilla/angie-conv:v0.0.6 environment: NGX_HTTP_MODULES: 'gzip brotli zstd' ports: diff --git a/doc/examples/njs/Dockerfile b/doc/examples/njs/Dockerfile index 857e37d..3b2e694 100644 --- a/doc/examples/njs/Dockerfile +++ b/doc/examples/njs/Dockerfile @@ -1,4 +1,4 @@ -FROM docker.io/rockdrilla/angie-conv:v0.0.5 +FROM docker.io/rockdrilla/angie-conv:v0.0.6 SHELL [ "/bin/sh", "-ec" ] COPY /site/ /etc/angie/site/ diff --git a/doc/examples/njs/README.md b/doc/examples/njs/README.md index a161748..5c14ae4 100644 --- a/doc/examples/njs/README.md +++ b/doc/examples/njs/README.md @@ -3,7 +3,7 @@ Dockerfile: ```dockerfile -FROM docker.io/rockdrilla/angie-conv:v0.0.5 +FROM docker.io/rockdrilla/angie-conv:v0.0.6 COPY /site/ /etc/angie/site/ diff --git a/doc/examples/perl/Dockerfile b/doc/examples/perl/Dockerfile index 1984e48..35cef5a 100644 --- a/doc/examples/perl/Dockerfile +++ b/doc/examples/perl/Dockerfile @@ -1,4 +1,4 @@ -FROM docker.io/rockdrilla/angie-conv:v0.0.5 +FROM docker.io/rockdrilla/angie-conv:v0.0.6 SHELL [ "/bin/sh", "-ec" ] COPY /site/ /etc/angie/site/ diff --git a/doc/examples/perl/README.md b/doc/examples/perl/README.md index 3ec58b3..48a96f5 100644 --- a/doc/examples/perl/README.md +++ b/doc/examples/perl/README.md @@ -3,7 +3,7 @@ Dockerfile: ```dockerfile -FROM docker.io/rockdrilla/angie-conv:v0.0.5 +FROM docker.io/rockdrilla/angie-conv:v0.0.6 COPY /site/ /etc/angie/site/ diff --git a/doc/examples/ssl/Dockerfile b/doc/examples/ssl/Dockerfile index 4c92bd5..b746329 100644 --- a/doc/examples/ssl/Dockerfile +++ b/doc/examples/ssl/Dockerfile @@ -1,4 +1,4 @@ -FROM docker.io/rockdrilla/angie-conv:v0.0.5 +FROM docker.io/rockdrilla/angie-conv:v0.0.6 SHELL [ "/bin/sh", "-ec" ] COPY /site/ /etc/angie/site/ diff --git a/doc/examples/ssl/docker-compose.yml b/doc/examples/ssl/docker-compose.yml index 608572d..7b16da7 100644 --- a/doc/examples/ssl/docker-compose.yml +++ b/doc/examples/ssl/docker-compose.yml @@ -4,7 +4,7 @@ services: angie-conv-example-ssl: container_name: angie-conv-example-ssl - image: docker.io/rockdrilla/angie-conv:v0.0.5 + image: docker.io/rockdrilla/angie-conv:v0.0.6 environment: NGX_HTTP_NO_PROXY: 1 NGX_HTTP_CONFLOAD: 'ssl v2' diff --git a/doc/examples/static-template/Dockerfile b/doc/examples/static-template/Dockerfile index 3cc702b..1232073 100644 --- a/doc/examples/static-template/Dockerfile +++ b/doc/examples/static-template/Dockerfile @@ -1,4 +1,4 @@ -FROM docker.io/rockdrilla/angie-conv:v0.0.5 +FROM docker.io/rockdrilla/angie-conv:v0.0.6 SHELL [ "/bin/sh", "-ec" ] COPY /site/ /etc/angie/site/ diff --git a/doc/examples/static-template/docker-compose.yml b/doc/examples/static-template/docker-compose.yml index 7c4c43b..2d9d18f 100644 --- a/doc/examples/static-template/docker-compose.yml +++ b/doc/examples/static-template/docker-compose.yml @@ -4,7 +4,7 @@ services: angie-conv-example-static-template: container_name: angie-conv-example-static-template - image: docker.io/rockdrilla/angie-conv:v0.0.5 + image: docker.io/rockdrilla/angie-conv:v0.0.6 environment: NGX_HTTP_NO_PROXY: 1 NGX_PROCESS_STATIC: 1