1.14.0-r11 release

Update image to version 1.14.0-r11
This commit is contained in:
Bitnami Bot
2018-05-05 05:56:12 +00:00
parent 12d32acf36
commit e061c9102a
5 changed files with 1 additions and 65 deletions

View File

@@ -14,7 +14,7 @@ RUN ln -sf /dev/stdout /opt/bitnami/nginx/logs/error.log
COPY rootfs /
ENV BITNAMI_APP_NAME="nginx" \
BITNAMI_IMAGE_VERSION="1.14.0-r10" \
BITNAMI_IMAGE_VERSION="1.14.0-r11" \
NGINX_DAEMON_GROUP="" \
NGINX_DAEMON_USER="" \
NGINX_HTTPS_PORT_NUMBER="8443" \

View File

@@ -1,29 +0,0 @@
FROM jotadrilo/rhel-extras:7-r0
LABEL maintainer "Bitnami <containers@bitnami.com>"
ENV BITNAMI_PKG_CHMOD="-R g+rwX" \
BITNAMI_PKG_EXTRA_DIRS="/bitnami/nginx/conf" \
HOME="/"
# Install required system packages and dependencies
RUN install_packages glibc keyutils-libs krb5-libs libcom_err libselinux nss-softokn-freebl openssl-libs pcre zlib
RUN bitnami-pkg unpack nginx-1.14.0-1 --checksum 321c5d593242cb9953232f275165994d10c0cf1e320d641d17dc5265481d6937
RUN ln -sf /opt/bitnami/nginx/html /app
RUN ln -sf /dev/stdout /opt/bitnami/nginx/logs/access.log
RUN ln -sf /dev/stdout /opt/bitnami/nginx/logs/error.log
COPY rootfs /
ENV BITNAMI_APP_NAME="nginx" \
BITNAMI_IMAGE_VERSION="1.14.0-r0" \
NGINX_DAEMON_GROUP="" \
NGINX_DAEMON_USER="" \
NGINX_HTTPS_PORT_NUMBER="8443" \
NGINX_HTTP_PORT_NUMBER="8080" \
PATH="/opt/bitnami/nginx/sbin:$PATH"
EXPOSE 8080 8443
WORKDIR /app
USER 1001
ENTRYPOINT ["/app-entrypoint.sh"]
CMD ["nginx","-g","daemon off;"]

View File

@@ -1,16 +0,0 @@
version: '2'
services:
nginx:
image: 'bitnami/nginx:1.14'
labels:
kompose.service.type: nodeport
ports:
- '80:8080'
- '443:8443'
volumes:
- 'nginx_data:/bitnami'
volumes:
nginx_data:
driver: local

View File

@@ -1,13 +0,0 @@
#!/bin/bash -e
. /opt/bitnami/base/functions
. /opt/bitnami/base/helpers
print_welcome_page
if [[ "$1" == "nami" && "$2" == "start" ]] || [[ "$1" == "nginx" ]]; then
nami_initialize nginx
info "Starting nginx... "
fi
exec tini -- "$@"

View File

@@ -1,6 +0,0 @@
{
"httpPort": "{{$global.env.NGINX_HTTP_PORT_NUMBER}}",
"httpsPort": "{{$global.env.NGINX_HTTPS_PORT_NUMBER}}",
"systemGroup": "{{$global.env.NGINX_DAEMON_GROUP}}",
"systemUser": "{{$global.env.NGINX_DAEMON_USER}}"
}