diff --git a/build-scripts/image-base.sh b/build-scripts/image-base.sh index 710318c..3228d46 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.6}" +IMAGE_VERSION="${IMAGE_VERSION:-v0.0.7}" set -a BUILDAH_FORMAT="${BUILDAH_FORMAT:-docker}" diff --git a/build-scripts/image-deps.sh b/build-scripts/image-deps.sh index f09ae70..18713be 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.6}" +IMAGE_VERSION="${IMAGE_VERSION:-v0.0.7}" set -a BUILDAH_FORMAT="${BUILDAH_FORMAT:-docker}" diff --git a/build-scripts/image.sh b/build-scripts/image.sh index cf42051..d797f7b 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.6}" +IMAGE_VERSION="${IMAGE_VERSION:-v0.0.7}" set -a BUILDAH_FORMAT="${BUILDAH_FORMAT:-docker}" diff --git a/doc/examples/basic/Dockerfile b/doc/examples/basic/Dockerfile index 034075b..565702a 100644 --- a/doc/examples/basic/Dockerfile +++ b/doc/examples/basic/Dockerfile @@ -1,4 +1,4 @@ -FROM docker.io/rockdrilla/angie-conv:v0.0.6 +FROM docker.io/rockdrilla/angie-conv:v0.0.7 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 84d6aa9..c180b22 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.6 + image: docker.io/rockdrilla/angie-conv:v0.0.7 environment: NGX_HTTP_NO_PROXY: 1 ports: diff --git a/doc/examples/config-template/README.md b/doc/examples/config-template/README.md index b3401bd..8c53c36 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.6 + image: docker.io/rockdrilla/angie-conv:v0.0.7 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 2c1ff5e..4703b1a 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.6 + image: docker.io/rockdrilla/angie-conv:v0.0.7 restart: always privileged: true stop_grace_period: 15s diff --git a/doc/examples/j2cfg-override/Dockerfile b/doc/examples/j2cfg-override/Dockerfile index c124ee8..18dc868 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.6 +FROM docker.io/rockdrilla/angie-conv:v0.0.7 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 d606940..9e37279 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.6 + image: docker.io/rockdrilla/angie-conv:v0.0.7 environment: NGX_HTTP_MODULES: 'gzip brotli zstd' ports: diff --git a/doc/examples/njs/Dockerfile b/doc/examples/njs/Dockerfile index 3b2e694..6ad6fac 100644 --- a/doc/examples/njs/Dockerfile +++ b/doc/examples/njs/Dockerfile @@ -1,4 +1,4 @@ -FROM docker.io/rockdrilla/angie-conv:v0.0.6 +FROM docker.io/rockdrilla/angie-conv:v0.0.7 SHELL [ "/bin/sh", "-ec" ] COPY /site/ /etc/angie/site/ diff --git a/doc/examples/njs/README.md b/doc/examples/njs/README.md index 5c14ae4..3124f60 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.6 +FROM docker.io/rockdrilla/angie-conv:v0.0.7 COPY /site/ /etc/angie/site/ diff --git a/doc/examples/perl/Dockerfile b/doc/examples/perl/Dockerfile index 35cef5a..7c18f6e 100644 --- a/doc/examples/perl/Dockerfile +++ b/doc/examples/perl/Dockerfile @@ -1,4 +1,4 @@ -FROM docker.io/rockdrilla/angie-conv:v0.0.6 +FROM docker.io/rockdrilla/angie-conv:v0.0.7 SHELL [ "/bin/sh", "-ec" ] COPY /site/ /etc/angie/site/ diff --git a/doc/examples/perl/README.md b/doc/examples/perl/README.md index 48a96f5..04dc8dd 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.6 +FROM docker.io/rockdrilla/angie-conv:v0.0.7 COPY /site/ /etc/angie/site/ diff --git a/doc/examples/ssl/Dockerfile b/doc/examples/ssl/Dockerfile index b746329..8119263 100644 --- a/doc/examples/ssl/Dockerfile +++ b/doc/examples/ssl/Dockerfile @@ -1,4 +1,4 @@ -FROM docker.io/rockdrilla/angie-conv:v0.0.6 +FROM docker.io/rockdrilla/angie-conv:v0.0.7 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 7b16da7..83b92c9 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.6 + image: docker.io/rockdrilla/angie-conv:v0.0.7 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 1232073..35dbea7 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.6 +FROM docker.io/rockdrilla/angie-conv:v0.0.7 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 2d9d18f..3c62ca8 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.6 + image: docker.io/rockdrilla/angie-conv:v0.0.7 environment: NGX_HTTP_NO_PROXY: 1 NGX_PROCESS_STATIC: 1