diff --git a/build-scripts/image-base.sh b/build-scripts/image-base.sh index d976f72..29eab34 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.4}" +IMAGE_VERSION="${IMAGE_VERSION:-v0.0.5}" set -a BUILDAH_FORMAT="${BUILDAH_FORMAT:-docker}" diff --git a/build-scripts/image-deps.sh b/build-scripts/image-deps.sh index 446064e..2d4d945 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.4}" +IMAGE_VERSION="${IMAGE_VERSION:-v0.0.5}" set -a BUILDAH_FORMAT="${BUILDAH_FORMAT:-docker}" diff --git a/build-scripts/image.sh b/build-scripts/image.sh index c103603..b876950 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.4}" +IMAGE_VERSION="${IMAGE_VERSION:-v0.0.5}" set -a BUILDAH_FORMAT="${BUILDAH_FORMAT:-docker}" diff --git a/doc/examples/basic/Dockerfile b/doc/examples/basic/Dockerfile index c3dd099..b128414 100644 --- a/doc/examples/basic/Dockerfile +++ b/doc/examples/basic/Dockerfile @@ -1,4 +1,4 @@ -FROM docker.io/rockdrilla/angie-conv:v0.0.4 +FROM docker.io/rockdrilla/angie-conv:v0.0.5 SHELL [ "/bin/sh", "-ec" ] COPY /site/ /etc/angie/site/ diff --git a/doc/examples/basic/README.md b/doc/examples/basic/README.md index ece8220..8a38acc 100644 --- a/doc/examples/basic/README.md +++ b/doc/examples/basic/README.md @@ -11,7 +11,7 @@ server { Dockerfile: ```dockerfile -FROM docker.io/rockdrilla/angie-conv:v0.0.4 +FROM docker.io/rockdrilla/angie-conv:v0.0.5 COPY /site/ /etc/angie/site/ COPY /static/ /etc/angie/static/ diff --git a/doc/examples/config-template/README.md b/doc/examples/config-template/README.md index 83fd244..728e279 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.4 + image: docker.io/rockdrilla/angie-conv:v0.0.5 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 4da78db..e3327b8 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.4 + image: docker.io/rockdrilla/angie-conv:v0.0.5 restart: always privileged: true stop_grace_period: 15s diff --git a/doc/examples/njs/Dockerfile b/doc/examples/njs/Dockerfile index 1e9567f..857e37d 100644 --- a/doc/examples/njs/Dockerfile +++ b/doc/examples/njs/Dockerfile @@ -1,4 +1,4 @@ -FROM docker.io/rockdrilla/angie-conv:v0.0.4 +FROM docker.io/rockdrilla/angie-conv:v0.0.5 SHELL [ "/bin/sh", "-ec" ] COPY /site/ /etc/angie/site/ diff --git a/doc/examples/njs/README.md b/doc/examples/njs/README.md index c969a83..a161748 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.4 +FROM docker.io/rockdrilla/angie-conv:v0.0.5 COPY /site/ /etc/angie/site/ diff --git a/doc/examples/perl/Dockerfile b/doc/examples/perl/Dockerfile index aecc58e..1984e48 100644 --- a/doc/examples/perl/Dockerfile +++ b/doc/examples/perl/Dockerfile @@ -1,4 +1,4 @@ -FROM docker.io/rockdrilla/angie-conv:v0.0.4 +FROM docker.io/rockdrilla/angie-conv:v0.0.5 SHELL [ "/bin/sh", "-ec" ] COPY /site/ /etc/angie/site/ diff --git a/doc/examples/perl/README.md b/doc/examples/perl/README.md index 4c97fac..3ec58b3 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.4 +FROM docker.io/rockdrilla/angie-conv:v0.0.5 COPY /site/ /etc/angie/site/ diff --git a/doc/examples/ssl/Dockerfile b/doc/examples/ssl/Dockerfile index 8742d2d..4c92bd5 100644 --- a/doc/examples/ssl/Dockerfile +++ b/doc/examples/ssl/Dockerfile @@ -1,4 +1,4 @@ -FROM docker.io/rockdrilla/angie-conv:v0.0.4 +FROM docker.io/rockdrilla/angie-conv:v0.0.5 SHELL [ "/bin/sh", "-ec" ] COPY /site/ /etc/angie/site/ diff --git a/doc/examples/ssl/README.md b/doc/examples/ssl/README.md index c8a9d66..bc2c1f8 100644 --- a/doc/examples/ssl/README.md +++ b/doc/examples/ssl/README.md @@ -3,7 +3,7 @@ Dockerfile: ```dockerfile -FROM docker.io/rockdrilla/angie-conv:v0.0.4 +FROM docker.io/rockdrilla/angie-conv:v0.0.5 COPY /site/ /etc/angie/site/ COPY /static/ /etc/angie/static/ diff --git a/doc/examples/static-template/Dockerfile b/doc/examples/static-template/Dockerfile index c5c6b55..3cc702b 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.4 +FROM docker.io/rockdrilla/angie-conv:v0.0.5 SHELL [ "/bin/sh", "-ec" ] COPY /site/ /etc/angie/site/ diff --git a/doc/examples/static-template/README.md b/doc/examples/static-template/README.md index ec39609..ef15485 100644 --- a/doc/examples/static-template/README.md +++ b/doc/examples/static-template/README.md @@ -13,7 +13,7 @@ server { Dockerfile: ```dockerfile -FROM docker.io/rockdrilla/angie-conv:v0.0.4 +FROM docker.io/rockdrilla/angie-conv:v0.0.5 COPY /site/ /etc/angie/site/ COPY /static/ /etc/angie/static/