Merge pull request #3 from dcarrillo/1.17.7

1.17.7
This commit is contained in:
Daniel Carrillo 2019-12-24 17:25:02 +01:00 committed by GitHub
commit 8b86bde182
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 5 additions and 7 deletions

View File

@ -1,4 +1,4 @@
FROM alpine:3.10
FROM alpine:3.11
ARG ARG_NGINX_VERSION
ARG ARG_NGX_GEOIP2_VERSION

View File

@ -30,5 +30,5 @@ fi
if [ x$LATEST = "xtrue" ]; then
docker tag "$DOCKER_IMAGE":"$NGINX_VERSION" "$DOCKER_IMAGE":latest
docker push "$DOCKER_IMAGE":latest
[ x$PUSH = "xtrue" ] && docker push "$DOCKER_IMAGE":latest
fi

View File

@ -1,3 +1,3 @@
NGINX_VERSION=1.17.6
NGINX_VERSION=1.17.7
NGX_GEOIP2_VERSION=3.3
DOCKER_IMAGE=dcarrillo/nginx

View File

@ -9,9 +9,7 @@ fi
trap _catch_err ERR
trap _cleanup EXIT
LOCAL_DIR=$(dirname "$0")
LOCAL_DIR="$( cd "$(dirname "$0")" ; pwd -P )"
LOCAL_DIR="$(cd "$(dirname "$0")" ; pwd -P)"
. "$LOCAL_DIR"/../conf.env
TMP_DIR=$(mktemp -d)
@ -65,7 +63,7 @@ docker run --name "${NGINX_VERSION}"_test --rm -p 65521:80 -p 65523:443 \
-v "$TMP_DIR"/cert.pem:/tmp/cert.pem:ro \
-v "$TMP_DIR"/cert.key:/tmp/cert.key:ro \
-v "$TMP_DIR"/dhparams.pem:/tmp/dhparams.pem:ro \
-d "${DOCKER_IMAGE}":"${NGINX_VERSION}"
-d "${DOCKER_IMAGE}":"${NGINX_VERSION}" > /dev/null
for request in http://localhost:65521/nginx_status https://localhost:65523/nginx_status; do
printf "\nRequesting %s\n" $request