parent
c7d95a4a37
commit
c6eabea5dc
|
|
@ -1,17 +1,19 @@
|
|||
FROM bitnami/minideb-extras:jessie-r16
|
||||
FROM bitnami/minideb-extras:jessie-r19
|
||||
LABEL maintainer "Bitnami <containers@bitnami.com>"
|
||||
|
||||
|
||||
|
||||
# Install required system packages and dependencies
|
||||
RUN install_packages libc6 libpcre3 libssl1.0.0 zlib1g
|
||||
RUN bitnami-pkg unpack nginx-1.12.0-1 --checksum 0564f400f06ae1889a19fceb76dcda411edc0216dfd9c341cea46bde4a076ce5
|
||||
RUN bitnami-pkg unpack nginx-1.13.2-0 --checksum 744e6e6748f7c73ed4b428d51199dd32384eeae7f78315d97dc8228347291027
|
||||
RUN ln -sf /opt/bitnami/nginx/html /app
|
||||
|
||||
COPY rootfs /
|
||||
|
||||
ENV BITNAMI_APP_NAME="nginx" \
|
||||
BITNAMI_IMAGE_VERSION="1.12.0-r3" \
|
||||
BITNAMI_IMAGE_VERSION="1.13.2-r0" \
|
||||
NGINX_DAEMON_GROUP="nginx" \
|
||||
NGINX_DAEMON_USER="nginx" \
|
||||
NGINX_HTTPS_PORT_NUMBER="443" \
|
||||
NGINX_HTTP_PORT_NUMBER="80" \
|
||||
PATH="/opt/bitnami/nginx/sbin:$PATH"
|
||||
|
|
|
|||
|
|
@ -1,4 +1,6 @@
|
|||
{
|
||||
"httpPort": "{{$global.env.NGINX_HTTP_PORT_NUMBER}}",
|
||||
"httpsPort": "{{$global.env.NGINX_HTTPS_PORT_NUMBER}}"
|
||||
"httpsPort": "{{$global.env.NGINX_HTTPS_PORT_NUMBER}}",
|
||||
"systemGroup": "{{$global.env.NGINX_DAEMON_GROUP}}",
|
||||
"systemUser": "{{$global.env.NGINX_DAEMON_USER}}"
|
||||
}
|
||||
Loading…
Reference in New Issue