Updated to v1.21.1

This commit is contained in:
Nikolas
2021-07-23 12:39:28 +03:00
parent 0613795b4a
commit 5b3007bfb5
3 changed files with 6 additions and 6 deletions

View File

@@ -8,11 +8,11 @@ before_install:
- chmod +x docker-entrypoint.sh
- chmod +x envsubst-on-templates.sh
- chmod +x tune-worker-processes.sh
- docker build . -t $DOCKER_HUB_ID/nginx:1.21.0-rtmp-geoip2-alpine --no-cache
- docker build . -t $DOCKER_HUB_ID/nginx:1.21.1-rtmp-geoip2-alpine --no-cache
script:
- docker run -t --name webserver --rm $DOCKER_HUB_ID/nginx:1.21.0-rtmp-geoip2-alpine nginx -v
- docker run -t --name webserver --rm $DOCKER_HUB_ID/nginx:1.21.1-rtmp-geoip2-alpine nginx -v
after_success:
- echo "$DOCKER_HUB_PASSWORD" | docker login -u "$DOCKER_HUB_ID" --password-stdin
- docker push $DOCKER_HUB_ID/nginx:1.21.0-rtmp-geoip2-alpine
- docker push $DOCKER_HUB_ID/nginx:1.21.1-rtmp-geoip2-alpine

View File

@@ -28,7 +28,7 @@ RUN ldconfig || :
# Nginx installation
ENV NGINX_VERSION 1.21.0
ENV NGINX_VERSION 1.21.1
RUN GPG_KEYS=B0F4253373F8F6F510D42178520A9993A1C052F8 \
&& CONFIG="\
--prefix=/etc/nginx \

View File

@@ -1,6 +1,6 @@
# NGINX with TLSv1.3 support & built-in RTMP Media Streaming Server with GeoIP2 country database.
[![Build Status](https://www.travis-ci.com/sceptic30/nginx-rtmp-geoip2-alpine.svg?branch=master)](https://www.travis-ci.com/sceptic30/nginx-rtmp-geoip2-alpine) ![Docker Pulls](https://img.shields.io/docker/pulls/admintuts/nginx) ![Nginx Version](https://img.shields.io/badge/Nginx-1.21.0-brightgreen)
[![Build Status](https://www.travis-ci.com/sceptic30/nginx-rtmp-geoip2-alpine.svg?branch=master)](https://www.travis-ci.com/sceptic30/nginx-rtmp-geoip2-alpine) ![Docker Pulls](https://img.shields.io/docker/pulls/admintuts/nginx) ![Nginx Version](https://img.shields.io/badge/Nginx-1.21.1-brightgreen)
## Building The Image
@@ -27,7 +27,7 @@ You must bind mount your database file (GeoLite2-Country.mmdb or GeoLite2-City.m
In a docker-compose file that would look like:
```sh
webserver:
image: admintuts/nginx:1.21.0-rtmp-geoip2-alpine
image: admintuts/nginx:1.21.1-rtmp-geoip2-alpine
container_name: webserver
hostname: webserver
restart: always