Namespace
nginxinc
Image / Tag
nginx-unprivileged:1.16-perl
Content Digest
sha256:9c183add8c6c1490a84162d1d207159008e86be07e2ab8b4aeec609cdd7715d9
Details
Created

2020-01-23 19:03:09 UTC

Size

59.8 MB

Content Digest
Labels
  • maintainer
    NGINX Docker Maintainers <docker-maint@nginx.com>

Environment
NGINX_VERSION

1.16.1

NJS_VERSION

0.3.8

PATH

/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

PKG_RELEASE

1~buster


Layers

[#000] sha256:5536417213b9f46f2118943c1151912954d6077afe03a32e68521774cc358095 - 44.25% (26.5 MB)

[#001] sha256:54f494f15d819c2fd70d0b714bfb21c56004f5e9c105d56e1473303385fddce0 - 55.74% (33.3 MB)

[#002] sha256:411458766e0d7b5d4b6ef97b6b4ac56d06ea2e55f2dbcbaa785332eb4a73f3e0 - 0.0% (983 Bytes)

[#003] sha256:8960549d13fff2b093b5892a1e7466d903050cdeb3140ef50bf54f1d03693977 - 0.0% (168 Bytes)

[#004] sha256:d09dd06bc2df3c9b82f78ee8713e0039f2488dc62b9febd96b2f4d6263620e15 - 0.0% (210 Bytes)


History
2019-12-28 04:39:35 UTC

/bin/sh -c #(nop) ADD file:447f0758c9f5653f03d964e54a38c18f24cf4c43e05fc38e7a76aebd6d6bafa8 in /

2019-12-28 04:39:35 UTC

/bin/sh -c #(nop) CMD ["bash"]

2020-01-22 22:25:22 UTC

/bin/sh -c #(nop) LABEL maintainer=NGINX Docker Maintainers <docker-maint@nginx.com>

2020-01-23 12:14:58 UTC

/bin/sh -c #(nop) ENV NGINX_VERSION=1.16.1

2020-01-23 12:14:59 UTC

/bin/sh -c #(nop) ENV NJS_VERSION=0.3.8

2020-01-23 12:14:59 UTC

/bin/sh -c #(nop) ENV PKG_RELEASE=1~buster

2020-01-23 19:03:05 UTC

/bin/sh -c set -x && addgroup --system --gid 101 nginx && adduser --system --disabled-login --ingroup nginx --no-create-home --home /nonexistent --gecos "nginx user" --shell /bin/false --uid 101 nginx && apt-get update && apt-get install --no-install-recommends --no-install-suggests -y gnupg1 ca-certificates && NGINX_GPGKEY=573BFD6B3D8FBC641079A6ABABF5BD827BD9BF62; found=''; for server in ha.pool.sks-keyservers.net hkp://keyserver.ubuntu.com:80 hkp://p80.pool.sks-keyservers.net:80 pgp.mit.edu ; do echo "Fetching GPG key $NGINX_GPGKEY from $server"; apt-key adv --keyserver "$server" --keyserver-options timeout=10 --recv-keys "$NGINX_GPGKEY" && found=yes && break; done; test -z "$found" && echo >&2 "error: failed to fetch GPG key $NGINX_GPGKEY" && exit 1; apt-get remove --purge --auto-remove -y gnupg1 && rm -rf /var/lib/apt/lists/* && dpkgArch="$(dpkg --print-architecture)" && nginxPackages=" nginx=${NGINX_VERSION}-${PKG_RELEASE} nginx-module-xslt=${NGINX_VERSION}-${PKG_RELEASE} nginx-module-geoip=${NGINX_VERSION}-${PKG_RELEASE} nginx-module-image-filter=${NGINX_VERSION}-${PKG_RELEASE} nginx-module-perl=${NGINX_VERSION}-${PKG_RELEASE} nginx-module-njs=${NGINX_VERSION}.${NJS_VERSION}-${PKG_RELEASE} " && case "$dpkgArch" in amd64|i386) echo "deb https://nginx.org/packages/debian/ buster nginx" >> /etc/apt/sources.list.d/nginx.list && apt-get update ;; *) echo "deb-src https://nginx.org/packages/debian/ buster nginx" >> /etc/apt/sources.list.d/nginx.list && tempDir="$(mktemp -d)" && chmod 777 "$tempDir" && savedAptMark="$(apt-mark showmanual)" && apt-get update && apt-get build-dep -y $nginxPackages && ( cd "$tempDir" && DEB_BUILD_OPTIONS="nocheck parallel=$(nproc)" apt-get source --compile $nginxPackages ) && apt-mark showmanual | xargs apt-mark auto > /dev/null && { [ -z "$savedAptMark" ] || apt-mark manual $savedAptMark; } && ls -lAFh "$tempDir" && ( cd "$tempDir" && dpkg-scanpackages . > Packages ) && grep '^Package: ' "$tempDir/Packages" && echo "deb [ trusted=yes ] file://$tempDir ./" > /etc/apt/sources.list.d/temp.list && apt-get -o Acquire::GzipIndexes=false update ;; esac && apt-get install --no-install-recommends --no-install-suggests -y $nginxPackages gettext-base && apt-get remove --purge --auto-remove -y ca-certificates && rm -rf /var/lib/apt/lists/* /etc/apt/sources.list.d/nginx.list && if [ -n "$tempDir" ]; then apt-get purge -y --auto-remove && rm -rf "$tempDir" /etc/apt/sources.list.d/temp.list; fi

2020-01-23 19:03:07 UTC

/bin/sh -c sed -i -e '/listen/!b' -e '/80;/!b' -e 's/80;/8080;/' /etc/nginx/conf.d/default.conf && sed -i -e '/user/!b' -e '/nginx/!b' -e '/nginx/d' /etc/nginx/nginx.conf && sed -i 's!/var/run/nginx.pid!/tmp/nginx.pid!g' /etc/nginx/nginx.conf && sed -i "/^http {/a \ proxy_temp_path /tmp/proxy_temp;\n client_body_temp_path /tmp/client_temp;\n fastcgi_temp_path /tmp/fastcgi_temp;\n uwsgi_temp_path /tmp/uwsgi_temp;\n scgi_temp_path /tmp/scgi_temp;\n" /etc/nginx/nginx.conf

2020-01-23 19:03:08 UTC

/bin/sh -c chown -R 101:0 /var/cache/nginx && chmod -R g+w /var/cache/nginx

2020-01-23 19:03:08 UTC

/bin/sh -c ln -sf /dev/stdout /var/log/nginx/access.log && ln -sf /dev/stderr /var/log/nginx/error.log

2020-01-23 19:03:08 UTC

/bin/sh -c #(nop) EXPOSE 8080

2020-01-23 19:03:09 UTC

/bin/sh -c #(nop) STOPSIGNAL SIGTERM

2020-01-23 19:03:09 UTC

/bin/sh -c #(nop) USER 101

2020-01-23 19:03:09 UTC

/bin/sh -c #(nop) CMD ["nginx" "-g" "daemon off;"]

Details
Created

2020-01-23 14:44:27 UTC

Size

59.1 MB

Content Digest
Labels
  • maintainer
    NGINX Docker Maintainers <docker-maint@nginx.com>

Environment
NGINX_VERSION

1.16.1

NJS_VERSION

0.3.8

PATH

/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

PKG_RELEASE

1~buster


Layers

[#000] sha256:8ec398bc03560e0fa56440e96da307cdf0b1ad153f459b52bca53ae7ddb8236d - 43.75% (25.8 MB)

[#001] sha256:1c1be0e866847441e5b2ae270bf6dbf1ab69546b7fe97cb0be1aa0f5d13d09b0 - 56.25% (33.2 MB)

[#002] sha256:f3e2423c2cadc5ed825796c98d8212a13e1a924c3dafe52312563863e39b02c2 - 0.0% (983 Bytes)

[#003] sha256:956a2a167dee04786505d42dd48940cea315b1c613a614b62cf3c387bceaa831 - 0.0% (165 Bytes)

[#004] sha256:6becc5ebe3bdcf0baf538e964ce3c1ef69b478e0cb8c119275408d22c47d81aa - 0.0% (209 Bytes)


History
2019-12-28 04:21:22 UTC

/bin/sh -c #(nop) ADD file:04caaf303199c81ff1a94e2e39d5096f9d02b73294b82758e5bc6e23aff94272 in /

2019-12-28 04:21:23 UTC

/bin/sh -c #(nop) CMD ["bash"]

2020-01-22 19:55:31 UTC

/bin/sh -c #(nop) LABEL maintainer=NGINX Docker Maintainers <docker-maint@nginx.com>

2020-01-23 10:06:02 UTC

/bin/sh -c #(nop) ENV NGINX_VERSION=1.16.1

2020-01-23 10:06:02 UTC

/bin/sh -c #(nop) ENV NJS_VERSION=0.3.8

2020-01-23 10:06:02 UTC

/bin/sh -c #(nop) ENV PKG_RELEASE=1~buster

2020-01-23 14:44:24 UTC

/bin/sh -c set -x && addgroup --system --gid 101 nginx && adduser --system --disabled-login --ingroup nginx --no-create-home --home /nonexistent --gecos "nginx user" --shell /bin/false --uid 101 nginx && apt-get update && apt-get install --no-install-recommends --no-install-suggests -y gnupg1 ca-certificates && NGINX_GPGKEY=573BFD6B3D8FBC641079A6ABABF5BD827BD9BF62; found=''; for server in ha.pool.sks-keyservers.net hkp://keyserver.ubuntu.com:80 hkp://p80.pool.sks-keyservers.net:80 pgp.mit.edu ; do echo "Fetching GPG key $NGINX_GPGKEY from $server"; apt-key adv --keyserver "$server" --keyserver-options timeout=10 --recv-keys "$NGINX_GPGKEY" && found=yes && break; done; test -z "$found" && echo >&2 "error: failed to fetch GPG key $NGINX_GPGKEY" && exit 1; apt-get remove --purge --auto-remove -y gnupg1 && rm -rf /var/lib/apt/lists/* && dpkgArch="$(dpkg --print-architecture)" && nginxPackages=" nginx=${NGINX_VERSION}-${PKG_RELEASE} nginx-module-xslt=${NGINX_VERSION}-${PKG_RELEASE} nginx-module-geoip=${NGINX_VERSION}-${PKG_RELEASE} nginx-module-image-filter=${NGINX_VERSION}-${PKG_RELEASE} nginx-module-perl=${NGINX_VERSION}-${PKG_RELEASE} nginx-module-njs=${NGINX_VERSION}.${NJS_VERSION}-${PKG_RELEASE} " && case "$dpkgArch" in amd64|i386) echo "deb https://nginx.org/packages/debian/ buster nginx" >> /etc/apt/sources.list.d/nginx.list && apt-get update ;; *) echo "deb-src https://nginx.org/packages/debian/ buster nginx" >> /etc/apt/sources.list.d/nginx.list && tempDir="$(mktemp -d)" && chmod 777 "$tempDir" && savedAptMark="$(apt-mark showmanual)" && apt-get update && apt-get build-dep -y $nginxPackages && ( cd "$tempDir" && DEB_BUILD_OPTIONS="nocheck parallel=$(nproc)" apt-get source --compile $nginxPackages ) && apt-mark showmanual | xargs apt-mark auto > /dev/null && { [ -z "$savedAptMark" ] || apt-mark manual $savedAptMark; } && ls -lAFh "$tempDir" && ( cd "$tempDir" && dpkg-scanpackages . > Packages ) && grep '^Package: ' "$tempDir/Packages" && echo "deb [ trusted=yes ] file://$tempDir ./" > /etc/apt/sources.list.d/temp.list && apt-get -o Acquire::GzipIndexes=false update ;; esac && apt-get install --no-install-recommends --no-install-suggests -y $nginxPackages gettext-base && apt-get remove --purge --auto-remove -y ca-certificates && rm -rf /var/lib/apt/lists/* /etc/apt/sources.list.d/nginx.list && if [ -n "$tempDir" ]; then apt-get purge -y --auto-remove && rm -rf "$tempDir" /etc/apt/sources.list.d/temp.list; fi

2020-01-23 14:44:26 UTC

/bin/sh -c sed -i -e '/listen/!b' -e '/80;/!b' -e 's/80;/8080;/' /etc/nginx/conf.d/default.conf && sed -i -e '/user/!b' -e '/nginx/!b' -e '/nginx/d' /etc/nginx/nginx.conf && sed -i 's!/var/run/nginx.pid!/tmp/nginx.pid!g' /etc/nginx/nginx.conf && sed -i "/^http {/a \ proxy_temp_path /tmp/proxy_temp;\n client_body_temp_path /tmp/client_temp;\n fastcgi_temp_path /tmp/fastcgi_temp;\n uwsgi_temp_path /tmp/uwsgi_temp;\n scgi_temp_path /tmp/scgi_temp;\n" /etc/nginx/nginx.conf

2020-01-23 14:44:26 UTC

/bin/sh -c chown -R 101:0 /var/cache/nginx && chmod -R g+w /var/cache/nginx

2020-01-23 14:44:27 UTC

/bin/sh -c ln -sf /dev/stdout /var/log/nginx/access.log && ln -sf /dev/stderr /var/log/nginx/error.log

2020-01-23 14:44:27 UTC

/bin/sh -c #(nop) EXPOSE 8080

2020-01-23 14:44:27 UTC

/bin/sh -c #(nop) STOPSIGNAL SIGTERM

2020-01-23 14:44:27 UTC

/bin/sh -c #(nop) USER 101

2020-01-23 14:44:27 UTC

/bin/sh -c #(nop) CMD ["nginx" "-g" "daemon off;"]

Details
Created

2020-01-23 17:33:54 UTC

Size

52.4 MB

Content Digest
Labels
  • maintainer
    NGINX Docker Maintainers <docker-maint@nginx.com>

Environment
NGINX_VERSION

1.16.1

NJS_VERSION

0.3.8

PATH

/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

PKG_RELEASE

1~buster


Layers

[#000] sha256:c4f8e1e649d2e7938fbe832f157cfb695319ee625a8bc06c619219a87d550949 - 41.32% (21.6 MB)

[#001] sha256:e5e7740bdef8239b4587eddae6828c00c5e2581bec0508200d7042818a2e31d5 - 58.68% (30.7 MB)

[#002] sha256:fc9cb142b4e5a7e5cff45540fdb0474b7d9f0fc0b3867f2f1ab4175d7c0a9437 - 0.0% (987 Bytes)

[#003] sha256:3369c03ba8a53c4723812f9c328b9579ff991eceb6afbc095f61b9dbd54a5866 - 0.0% (165 Bytes)

[#004] sha256:7f32eface8c73ea935e80063492fbcd5009ef3516dcd80a2f7d33201a781e29b - 0.0% (211 Bytes)


History
2019-12-28 04:59:06 UTC

/bin/sh -c #(nop) ADD file:d252ae1c97d5c80e71e64a51cc4d137a901e0e6cdc4aec29faa917fa9bcf3242 in /

2019-12-28 04:59:08 UTC

/bin/sh -c #(nop) CMD ["bash"]

2020-01-22 19:56:13 UTC

/bin/sh -c #(nop) LABEL maintainer=NGINX Docker Maintainers <docker-maint@nginx.com>

2020-01-23 10:06:29 UTC

/bin/sh -c #(nop) ENV NGINX_VERSION=1.16.1

2020-01-23 10:06:29 UTC

/bin/sh -c #(nop) ENV NJS_VERSION=0.3.8

2020-01-23 10:06:29 UTC

/bin/sh -c #(nop) ENV PKG_RELEASE=1~buster

2020-01-23 17:33:49 UTC

/bin/sh -c set -x && addgroup --system --gid 101 nginx && adduser --system --disabled-login --ingroup nginx --no-create-home --home /nonexistent --gecos "nginx user" --shell /bin/false --uid 101 nginx && apt-get update && apt-get install --no-install-recommends --no-install-suggests -y gnupg1 ca-certificates && NGINX_GPGKEY=573BFD6B3D8FBC641079A6ABABF5BD827BD9BF62; found=''; for server in ha.pool.sks-keyservers.net hkp://keyserver.ubuntu.com:80 hkp://p80.pool.sks-keyservers.net:80 pgp.mit.edu ; do echo "Fetching GPG key $NGINX_GPGKEY from $server"; apt-key adv --keyserver "$server" --keyserver-options timeout=10 --recv-keys "$NGINX_GPGKEY" && found=yes && break; done; test -z "$found" && echo >&2 "error: failed to fetch GPG key $NGINX_GPGKEY" && exit 1; apt-get remove --purge --auto-remove -y gnupg1 && rm -rf /var/lib/apt/lists/* && dpkgArch="$(dpkg --print-architecture)" && nginxPackages=" nginx=${NGINX_VERSION}-${PKG_RELEASE} nginx-module-xslt=${NGINX_VERSION}-${PKG_RELEASE} nginx-module-geoip=${NGINX_VERSION}-${PKG_RELEASE} nginx-module-image-filter=${NGINX_VERSION}-${PKG_RELEASE} nginx-module-perl=${NGINX_VERSION}-${PKG_RELEASE} nginx-module-njs=${NGINX_VERSION}.${NJS_VERSION}-${PKG_RELEASE} " && case "$dpkgArch" in amd64|i386) echo "deb https://nginx.org/packages/debian/ buster nginx" >> /etc/apt/sources.list.d/nginx.list && apt-get update ;; *) echo "deb-src https://nginx.org/packages/debian/ buster nginx" >> /etc/apt/sources.list.d/nginx.list && tempDir="$(mktemp -d)" && chmod 777 "$tempDir" && savedAptMark="$(apt-mark showmanual)" && apt-get update && apt-get build-dep -y $nginxPackages && ( cd "$tempDir" && DEB_BUILD_OPTIONS="nocheck parallel=$(nproc)" apt-get source --compile $nginxPackages ) && apt-mark showmanual | xargs apt-mark auto > /dev/null && { [ -z "$savedAptMark" ] || apt-mark manual $savedAptMark; } && ls -lAFh "$tempDir" && ( cd "$tempDir" && dpkg-scanpackages . > Packages ) && grep '^Package: ' "$tempDir/Packages" && echo "deb [ trusted=yes ] file://$tempDir ./" > /etc/apt/sources.list.d/temp.list && apt-get -o Acquire::GzipIndexes=false update ;; esac && apt-get install --no-install-recommends --no-install-suggests -y $nginxPackages gettext-base && apt-get remove --purge --auto-remove -y ca-certificates && rm -rf /var/lib/apt/lists/* /etc/apt/sources.list.d/nginx.list && if [ -n "$tempDir" ]; then apt-get purge -y --auto-remove && rm -rf "$tempDir" /etc/apt/sources.list.d/temp.list; fi

2020-01-23 17:33:51 UTC

/bin/sh -c sed -i -e '/listen/!b' -e '/80;/!b' -e 's/80;/8080;/' /etc/nginx/conf.d/default.conf && sed -i -e '/user/!b' -e '/nginx/!b' -e '/nginx/d' /etc/nginx/nginx.conf && sed -i 's!/var/run/nginx.pid!/tmp/nginx.pid!g' /etc/nginx/nginx.conf && sed -i "/^http {/a \ proxy_temp_path /tmp/proxy_temp;\n client_body_temp_path /tmp/client_temp;\n fastcgi_temp_path /tmp/fastcgi_temp;\n uwsgi_temp_path /tmp/uwsgi_temp;\n scgi_temp_path /tmp/scgi_temp;\n" /etc/nginx/nginx.conf

2020-01-23 17:33:52 UTC

/bin/sh -c chown -R 101:0 /var/cache/nginx && chmod -R g+w /var/cache/nginx

2020-01-23 17:33:53 UTC

/bin/sh -c ln -sf /dev/stdout /var/log/nginx/access.log && ln -sf /dev/stderr /var/log/nginx/error.log

2020-01-23 17:33:53 UTC

/bin/sh -c #(nop) EXPOSE 8080

2020-01-23 17:33:53 UTC

/bin/sh -c #(nop) STOPSIGNAL SIGTERM

2020-01-23 17:33:53 UTC

/bin/sh -c #(nop) USER 101

2020-01-23 17:33:54 UTC

/bin/sh -c #(nop) CMD ["nginx" "-g" "daemon off;"]

Details
Created

2020-01-23 19:02:30 UTC

Size

57.7 MB

Content Digest
Labels
  • maintainer
    NGINX Docker Maintainers <docker-maint@nginx.com>

Environment
NGINX_VERSION

1.16.1

NJS_VERSION

0.3.8

PATH

/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

PKG_RELEASE

1~buster


Layers

[#000] sha256:fb62b7c746da1f79992359282f2d8b7f93da8c48dc138ec6b2a36130efd42635 - 42.7% (24.7 MB)

[#001] sha256:bede9439816b843b6a6ca241649d812e01f6fc7bdd96fed22d046af732b4d5b4 - 57.29% (33.1 MB)

[#002] sha256:a900c06215163ba8c8a81d80a60efc8904336a9776bd24d6b04dcc1e5193226a - 0.0% (987 Bytes)

[#003] sha256:465db3c2a1f8f48b8080a72a3ee356453a25c7288b7b301030ca33b2c7cf5272 - 0.0% (167 Bytes)

[#004] sha256:ff6f6aeb80a95824a5e9929eb7b46317daba26e5dca1e5e22efb4b5e54519650 - 0.0% (209 Bytes)


History
2019-12-28 04:41:08 UTC

/bin/sh -c #(nop) ADD file:b45fd612576b682e93ab91addbc4387a6609ace4bc092e5b615323964bba33c3 in /

2019-12-28 04:41:11 UTC

/bin/sh -c #(nop) CMD ["bash"]

2020-01-22 21:07:35 UTC

/bin/sh -c #(nop) LABEL maintainer=NGINX Docker Maintainers <docker-maint@nginx.com>

2020-01-23 11:07:34 UTC

/bin/sh -c #(nop) ENV NGINX_VERSION=1.16.1

2020-01-23 11:07:34 UTC

/bin/sh -c #(nop) ENV NJS_VERSION=0.3.8

2020-01-23 11:07:34 UTC

/bin/sh -c #(nop) ENV PKG_RELEASE=1~buster

2020-01-23 19:02:26 UTC

/bin/sh -c set -x && addgroup --system --gid 101 nginx && adduser --system --disabled-login --ingroup nginx --no-create-home --home /nonexistent --gecos "nginx user" --shell /bin/false --uid 101 nginx && apt-get update && apt-get install --no-install-recommends --no-install-suggests -y gnupg1 ca-certificates && NGINX_GPGKEY=573BFD6B3D8FBC641079A6ABABF5BD827BD9BF62; found=''; for server in ha.pool.sks-keyservers.net hkp://keyserver.ubuntu.com:80 hkp://p80.pool.sks-keyservers.net:80 pgp.mit.edu ; do echo "Fetching GPG key $NGINX_GPGKEY from $server"; apt-key adv --keyserver "$server" --keyserver-options timeout=10 --recv-keys "$NGINX_GPGKEY" && found=yes && break; done; test -z "$found" && echo >&2 "error: failed to fetch GPG key $NGINX_GPGKEY" && exit 1; apt-get remove --purge --auto-remove -y gnupg1 && rm -rf /var/lib/apt/lists/* && dpkgArch="$(dpkg --print-architecture)" && nginxPackages=" nginx=${NGINX_VERSION}-${PKG_RELEASE} nginx-module-xslt=${NGINX_VERSION}-${PKG_RELEASE} nginx-module-geoip=${NGINX_VERSION}-${PKG_RELEASE} nginx-module-image-filter=${NGINX_VERSION}-${PKG_RELEASE} nginx-module-perl=${NGINX_VERSION}-${PKG_RELEASE} nginx-module-njs=${NGINX_VERSION}.${NJS_VERSION}-${PKG_RELEASE} " && case "$dpkgArch" in amd64|i386) echo "deb https://nginx.org/packages/debian/ buster nginx" >> /etc/apt/sources.list.d/nginx.list && apt-get update ;; *) echo "deb-src https://nginx.org/packages/debian/ buster nginx" >> /etc/apt/sources.list.d/nginx.list && tempDir="$(mktemp -d)" && chmod 777 "$tempDir" && savedAptMark="$(apt-mark showmanual)" && apt-get update && apt-get build-dep -y $nginxPackages && ( cd "$tempDir" && DEB_BUILD_OPTIONS="nocheck parallel=$(nproc)" apt-get source --compile $nginxPackages ) && apt-mark showmanual | xargs apt-mark auto > /dev/null && { [ -z "$savedAptMark" ] || apt-mark manual $savedAptMark; } && ls -lAFh "$tempDir" && ( cd "$tempDir" && dpkg-scanpackages . > Packages ) && grep '^Package: ' "$tempDir/Packages" && echo "deb [ trusted=yes ] file://$tempDir ./" > /etc/apt/sources.list.d/temp.list && apt-get -o Acquire::GzipIndexes=false update ;; esac && apt-get install --no-install-recommends --no-install-suggests -y $nginxPackages gettext-base && apt-get remove --purge --auto-remove -y ca-certificates && rm -rf /var/lib/apt/lists/* /etc/apt/sources.list.d/nginx.list && if [ -n "$tempDir" ]; then apt-get purge -y --auto-remove && rm -rf "$tempDir" /etc/apt/sources.list.d/temp.list; fi

2020-01-23 19:02:27 UTC

/bin/sh -c sed -i -e '/listen/!b' -e '/80;/!b' -e 's/80;/8080;/' /etc/nginx/conf.d/default.conf && sed -i -e '/user/!b' -e '/nginx/!b' -e '/nginx/d' /etc/nginx/nginx.conf && sed -i 's!/var/run/nginx.pid!/tmp/nginx.pid!g' /etc/nginx/nginx.conf && sed -i "/^http {/a \ proxy_temp_path /tmp/proxy_temp;\n client_body_temp_path /tmp/client_temp;\n fastcgi_temp_path /tmp/fastcgi_temp;\n uwsgi_temp_path /tmp/uwsgi_temp;\n scgi_temp_path /tmp/scgi_temp;\n" /etc/nginx/nginx.conf

2020-01-23 19:02:28 UTC

/bin/sh -c chown -R 101:0 /var/cache/nginx && chmod -R g+w /var/cache/nginx

2020-01-23 19:02:29 UTC

/bin/sh -c ln -sf /dev/stdout /var/log/nginx/access.log && ln -sf /dev/stderr /var/log/nginx/error.log

2020-01-23 19:02:29 UTC

/bin/sh -c #(nop) EXPOSE 8080

2020-01-23 19:02:30 UTC

/bin/sh -c #(nop) STOPSIGNAL SIGTERM

2020-01-23 19:02:30 UTC

/bin/sh -c #(nop) USER 101

2020-01-23 19:02:30 UTC

/bin/sh -c #(nop) CMD ["nginx" "-g" "daemon off;"]

Details
Created

2020-01-23 20:38:04 UTC

Size

64.1 MB

Content Digest
Labels
  • maintainer
    NGINX Docker Maintainers <docker-maint@nginx.com>

Environment
NGINX_VERSION

1.16.1

NJS_VERSION

0.3.8

PATH

/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

PKG_RELEASE

1~buster


Layers

[#000] sha256:37e6f4d596ea5c3cc92914bd95508a4192c8834c4edaff414734885929b07800 - 45.41% (29.1 MB)

[#001] sha256:c8e47cbd5f6588547b67178a70f13db09969dc8630bc1e20bd637be7061c4ad3 - 54.59% (35 MB)

[#002] sha256:5e113fe13cb696b7a1fecc19e97c3351d3598175ca6acc5bd19b825307bd3337 - 0.0% (986 Bytes)

[#003] sha256:9fab5c102d429b1fb139aceb2d32cc600f6553f29e4a115d963337f494310514 - 0.0% (165 Bytes)

[#004] sha256:784edb807f900421ff5f3c3668e57750bd36ec36b274663e80eee7ba0dd01a7f - 0.0% (212 Bytes)


History
2019-12-28 04:20:39 UTC

/bin/sh -c #(nop) ADD file:abec4f3d6a54bb0725560d826d07e99da3d6b582433c6dd95605626c67d7c2d6 in /

2019-12-28 04:20:43 UTC

/bin/sh -c #(nop) CMD ["bash"]

2020-01-22 22:25:55 UTC

/bin/sh -c #(nop) LABEL maintainer=NGINX Docker Maintainers <docker-maint@nginx.com>

2020-01-23 12:15:25 UTC

/bin/sh -c #(nop) ENV NGINX_VERSION=1.16.1

2020-01-23 12:15:25 UTC

/bin/sh -c #(nop) ENV NJS_VERSION=0.3.8

2020-01-23 12:15:25 UTC

/bin/sh -c #(nop) ENV PKG_RELEASE=1~buster

2020-01-23 20:37:59 UTC

/bin/sh -c set -x && addgroup --system --gid 101 nginx && adduser --system --disabled-login --ingroup nginx --no-create-home --home /nonexistent --gecos "nginx user" --shell /bin/false --uid 101 nginx && apt-get update && apt-get install --no-install-recommends --no-install-suggests -y gnupg1 ca-certificates && NGINX_GPGKEY=573BFD6B3D8FBC641079A6ABABF5BD827BD9BF62; found=''; for server in ha.pool.sks-keyservers.net hkp://keyserver.ubuntu.com:80 hkp://p80.pool.sks-keyservers.net:80 pgp.mit.edu ; do echo "Fetching GPG key $NGINX_GPGKEY from $server"; apt-key adv --keyserver "$server" --keyserver-options timeout=10 --recv-keys "$NGINX_GPGKEY" && found=yes && break; done; test -z "$found" && echo >&2 "error: failed to fetch GPG key $NGINX_GPGKEY" && exit 1; apt-get remove --purge --auto-remove -y gnupg1 && rm -rf /var/lib/apt/lists/* && dpkgArch="$(dpkg --print-architecture)" && nginxPackages=" nginx=${NGINX_VERSION}-${PKG_RELEASE} nginx-module-xslt=${NGINX_VERSION}-${PKG_RELEASE} nginx-module-geoip=${NGINX_VERSION}-${PKG_RELEASE} nginx-module-image-filter=${NGINX_VERSION}-${PKG_RELEASE} nginx-module-perl=${NGINX_VERSION}-${PKG_RELEASE} nginx-module-njs=${NGINX_VERSION}.${NJS_VERSION}-${PKG_RELEASE} " && case "$dpkgArch" in amd64|i386) echo "deb https://nginx.org/packages/debian/ buster nginx" >> /etc/apt/sources.list.d/nginx.list && apt-get update ;; *) echo "deb-src https://nginx.org/packages/debian/ buster nginx" >> /etc/apt/sources.list.d/nginx.list && tempDir="$(mktemp -d)" && chmod 777 "$tempDir" && savedAptMark="$(apt-mark showmanual)" && apt-get update && apt-get build-dep -y $nginxPackages && ( cd "$tempDir" && DEB_BUILD_OPTIONS="nocheck parallel=$(nproc)" apt-get source --compile $nginxPackages ) && apt-mark showmanual | xargs apt-mark auto > /dev/null && { [ -z "$savedAptMark" ] || apt-mark manual $savedAptMark; } && ls -lAFh "$tempDir" && ( cd "$tempDir" && dpkg-scanpackages . > Packages ) && grep '^Package: ' "$tempDir/Packages" && echo "deb [ trusted=yes ] file://$tempDir ./" > /etc/apt/sources.list.d/temp.list && apt-get -o Acquire::GzipIndexes=false update ;; esac && apt-get install --no-install-recommends --no-install-suggests -y $nginxPackages gettext-base && apt-get remove --purge --auto-remove -y ca-certificates && rm -rf /var/lib/apt/lists/* /etc/apt/sources.list.d/nginx.list && if [ -n "$tempDir" ]; then apt-get purge -y --auto-remove && rm -rf "$tempDir" /etc/apt/sources.list.d/temp.list; fi

2020-01-23 20:38:01 UTC

/bin/sh -c sed -i -e '/listen/!b' -e '/80;/!b' -e 's/80;/8080;/' /etc/nginx/conf.d/default.conf && sed -i -e '/user/!b' -e '/nginx/!b' -e '/nginx/d' /etc/nginx/nginx.conf && sed -i 's!/var/run/nginx.pid!/tmp/nginx.pid!g' /etc/nginx/nginx.conf && sed -i "/^http {/a \ proxy_temp_path /tmp/proxy_temp;\n client_body_temp_path /tmp/client_temp;\n fastcgi_temp_path /tmp/fastcgi_temp;\n uwsgi_temp_path /tmp/uwsgi_temp;\n scgi_temp_path /tmp/scgi_temp;\n" /etc/nginx/nginx.conf

2020-01-23 20:38:02 UTC

/bin/sh -c chown -R 101:0 /var/cache/nginx && chmod -R g+w /var/cache/nginx

2020-01-23 20:38:03 UTC

/bin/sh -c ln -sf /dev/stdout /var/log/nginx/access.log && ln -sf /dev/stderr /var/log/nginx/error.log

2020-01-23 20:38:03 UTC

/bin/sh -c #(nop) EXPOSE 8080

2020-01-23 20:38:03 UTC

/bin/sh -c #(nop) STOPSIGNAL SIGTERM

2020-01-23 20:38:03 UTC

/bin/sh -c #(nop) USER 101

2020-01-23 20:38:04 UTC

/bin/sh -c #(nop) CMD ["nginx" "-g" "daemon off;"]

Details
Created

2020-01-23 21:52:37 UTC

Size

57.7 MB

Content Digest
Labels
  • maintainer
    NGINX Docker Maintainers <docker-maint@nginx.com>

Environment
NGINX_VERSION

1.16.1

NJS_VERSION

0.3.8

PATH

/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

PKG_RELEASE

1~buster


Layers

[#000] sha256:f7542f43e95fb32a870ee38d7f0e7bb23267ac8dcf709e3944311b0a30d7a479 - 42.52% (24.5 MB)

[#001] sha256:44040f24d68546c0d2663b262db0820312a821748d592e49db774a5191540817 - 57.48% (33.1 MB)

[#002] sha256:324918fa481b15c9d0d98554b89d71c2a816c57a4ee4da016a2a66e3046499c6 - 0.0% (982 Bytes)

[#003] sha256:919d7a8655500786538b3977a711bd30efcee52498d29c499c9a0b969d594233 - 0.0% (167 Bytes)

[#004] sha256:78ae447a707cc2c8f56a1521753b1a5f9dbaa40bbda2d47f8d114f1d7e8a4d54 - 0.0% (211 Bytes)


History
2019-12-28 04:42:03 UTC

/bin/sh -c #(nop) ADD file:eec6c56f8680753860198c3af0d94aabb87018ca30f6f6e346621a6bffe0e4b8 in /

2019-12-28 04:42:04 UTC

/bin/sh -c #(nop) CMD ["bash"]

2020-01-22 23:48:34 UTC

/bin/sh -c #(nop) LABEL maintainer=NGINX Docker Maintainers <docker-maint@nginx.com>

2020-01-23 13:41:10 UTC

/bin/sh -c #(nop) ENV NGINX_VERSION=1.16.1

2020-01-23 13:41:11 UTC

/bin/sh -c #(nop) ENV NJS_VERSION=0.3.8

2020-01-23 13:41:11 UTC

/bin/sh -c #(nop) ENV PKG_RELEASE=1~buster

2020-01-23 21:52:31 UTC

/bin/sh -c set -x && addgroup --system --gid 101 nginx && adduser --system --disabled-login --ingroup nginx --no-create-home --home /nonexistent --gecos "nginx user" --shell /bin/false --uid 101 nginx && apt-get update && apt-get install --no-install-recommends --no-install-suggests -y gnupg1 ca-certificates && NGINX_GPGKEY=573BFD6B3D8FBC641079A6ABABF5BD827BD9BF62; found=''; for server in ha.pool.sks-keyservers.net hkp://keyserver.ubuntu.com:80 hkp://p80.pool.sks-keyservers.net:80 pgp.mit.edu ; do echo "Fetching GPG key $NGINX_GPGKEY from $server"; apt-key adv --keyserver "$server" --keyserver-options timeout=10 --recv-keys "$NGINX_GPGKEY" && found=yes && break; done; test -z "$found" && echo >&2 "error: failed to fetch GPG key $NGINX_GPGKEY" && exit 1; apt-get remove --purge --auto-remove -y gnupg1 && rm -rf /var/lib/apt/lists/* && dpkgArch="$(dpkg --print-architecture)" && nginxPackages=" nginx=${NGINX_VERSION}-${PKG_RELEASE} nginx-module-xslt=${NGINX_VERSION}-${PKG_RELEASE} nginx-module-geoip=${NGINX_VERSION}-${PKG_RELEASE} nginx-module-image-filter=${NGINX_VERSION}-${PKG_RELEASE} nginx-module-perl=${NGINX_VERSION}-${PKG_RELEASE} nginx-module-njs=${NGINX_VERSION}.${NJS_VERSION}-${PKG_RELEASE} " && case "$dpkgArch" in amd64|i386) echo "deb https://nginx.org/packages/debian/ buster nginx" >> /etc/apt/sources.list.d/nginx.list && apt-get update ;; *) echo "deb-src https://nginx.org/packages/debian/ buster nginx" >> /etc/apt/sources.list.d/nginx.list && tempDir="$(mktemp -d)" && chmod 777 "$tempDir" && savedAptMark="$(apt-mark showmanual)" && apt-get update && apt-get build-dep -y $nginxPackages && ( cd "$tempDir" && DEB_BUILD_OPTIONS="nocheck parallel=$(nproc)" apt-get source --compile $nginxPackages ) && apt-mark showmanual | xargs apt-mark auto > /dev/null && { [ -z "$savedAptMark" ] || apt-mark manual $savedAptMark; } && ls -lAFh "$tempDir" && ( cd "$tempDir" && dpkg-scanpackages . > Packages ) && grep '^Package: ' "$tempDir/Packages" && echo "deb [ trusted=yes ] file://$tempDir ./" > /etc/apt/sources.list.d/temp.list && apt-get -o Acquire::GzipIndexes=false update ;; esac && apt-get install --no-install-recommends --no-install-suggests -y $nginxPackages gettext-base && apt-get remove --purge --auto-remove -y ca-certificates && rm -rf /var/lib/apt/lists/* /etc/apt/sources.list.d/nginx.list && if [ -n "$tempDir" ]; then apt-get purge -y --auto-remove && rm -rf "$tempDir" /etc/apt/sources.list.d/temp.list; fi

2020-01-23 21:52:33 UTC

/bin/sh -c sed -i -e '/listen/!b' -e '/80;/!b' -e 's/80;/8080;/' /etc/nginx/conf.d/default.conf && sed -i -e '/user/!b' -e '/nginx/!b' -e '/nginx/d' /etc/nginx/nginx.conf && sed -i 's!/var/run/nginx.pid!/tmp/nginx.pid!g' /etc/nginx/nginx.conf && sed -i "/^http {/a \ proxy_temp_path /tmp/proxy_temp;\n client_body_temp_path /tmp/client_temp;\n fastcgi_temp_path /tmp/fastcgi_temp;\n uwsgi_temp_path /tmp/uwsgi_temp;\n scgi_temp_path /tmp/scgi_temp;\n" /etc/nginx/nginx.conf

2020-01-23 21:52:34 UTC

/bin/sh -c chown -R 101:0 /var/cache/nginx && chmod -R g+w /var/cache/nginx

2020-01-23 21:52:35 UTC

/bin/sh -c ln -sf /dev/stdout /var/log/nginx/access.log && ln -sf /dev/stderr /var/log/nginx/error.log

2020-01-23 21:52:35 UTC

/bin/sh -c #(nop) EXPOSE 8080

2020-01-23 21:52:36 UTC

/bin/sh -c #(nop) STOPSIGNAL SIGTERM

2020-01-23 21:52:37 UTC

/bin/sh -c #(nop) USER 101

2020-01-23 21:52:37 UTC

/bin/sh -c #(nop) CMD ["nginx" "-g" "daemon off;"]

Danger Zone
Delete Tag

Please be careful as this will not just delete the reference but also the actual content!

For example when you have latest and v1.2.3 both pointing to the same image
the deletion of latest will also permanently remove v1.2.3.

Delete