Namespace
nginxinc
Image / Tag
nginx-unprivileged:1.19.0-perl
Content Digest
sha256:8c3ce03935570e6cfaf189c2d762d5dc745eec6a55321732ac68a7643d934b62
Details
Created

2020-06-18 10:48:07 UTC

Size

62.2 MB

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

Environment
NGINX_VERSION

1.19.0

NJS_VERSION

0.4.1

PATH

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

PKG_RELEASE

1~buster


Layers

[#000] sha256:a5695130085a13212b02bf2645a52af5b41dd13e6dc9b29e2d7f357e1525aa48 - 42.55% (26.5 MB)

[#001] sha256:99b602f3ec765d48e1fb0d03a24a81a698a544db0a234c917af80ca8ee92e35c - 57.44% (35.7 MB)

[#002] sha256:e557c0688f32ca31b77f7a50e2f422525213b2d560de23c0e9a8885f536b440a - 0.01% (4.96 KB)

[#003] sha256:71992e9da9bb546a13850976f4e510735945a94dfdb398b4d70fad51fc2411cc - 0.0% (600 Bytes)

[#004] sha256:06c81b25d132202d3293e8b45249e4d3a9632d9132bfa45539fbf3e52025d6c2 - 0.0% (886 Bytes)

[#005] sha256:7b057dc9a218829d83a2984aa55cf6b921fb6480d4cdec2ae4dab62afe84ebe1 - 0.0% (674 Bytes)


History
2020-05-15 07:07:55 UTC

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

2020-05-15 07:07:56 UTC

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

2020-06-02 23:32:57 UTC

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

2020-06-02 23:32:57 UTC

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

2020-06-02 23:32:57 UTC

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

2020-06-02 23:32:58 UTC

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

2020-06-03 03:13: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/mainline/debian/ buster nginx" >> /etc/apt/sources.list.d/nginx.list && apt-get update ;; *) echo "deb-src https://nginx.org/packages/mainline/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 curl && apt-get remove --purge --auto-remove -y && 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 && ln -sf /dev/stdout /var/log/nginx/access.log && ln -sf /dev/stderr /var/log/nginx/error.log && mkdir /docker-entrypoint.d

2020-06-05 17:00:48 UTC

/bin/sh -c sed -i 's,listen 80;,listen 8080;,' /etc/nginx/conf.d/default.conf && sed -i '/user nginx;/d' /etc/nginx/nginx.conf && sed -i 's,/var/run/nginx.pid,/tmp/nginx.pid,' /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 && chown -R 101:0 /var/cache/nginx && chmod -R g+w /var/cache/nginx && chown -R 101:0 /etc/nginx && chmod -R g+w /etc/nginx

2020-06-17 15:07:34 UTC

/bin/sh -c #(nop) COPY file:e78903b1250af520adac3ab3ed59cca0d2c1c6feaedefd364f644ea10e50df8a in /

2020-06-18 10:48:06 UTC

/bin/sh -c #(nop) COPY file:685c21a986968b232b31f7b9b8c486e56c331fb1f37724d06b9433fc6e339a6c in /docker-entrypoint.d

2020-06-18 10:48:06 UTC

/bin/sh -c #(nop) COPY file:4404369bdc07f3b9880a03ff19a3dd389d9a4a800d664fadc9ceda9fdabe0771 in /docker-entrypoint.d

2020-06-18 10:48:06 UTC

/bin/sh -c #(nop) ENTRYPOINT ["/docker-entrypoint.sh"]

2020-06-18 10:48:06 UTC

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

2020-06-18 10:48:07 UTC

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

2020-06-18 10:48:07 UTC

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

2020-06-18 10:48:07 UTC

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

Details
Created

2020-06-18 10:48:00 UTC

Size

61.3 MB

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

Environment
NGINX_VERSION

1.19.0

NJS_VERSION

0.4.1

PATH

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

PKG_RELEASE

1~buster


Layers

[#000] sha256:8559a31e96f442f2c7b6da49d6c84705f98a39d8be10b3f5f14821d0ee8417df - 42.16% (25.8 MB)

[#001] sha256:83dd964e56221b5697d4058fff67d7d221bfea31470b6f7939a4d91d71043a4b - 57.83% (35.4 MB)

[#002] sha256:355790355784f8e503ea093ecb13cf0ed8e776311b70e963bfe27b47ed1efc82 - 0.01% (4.96 KB)

[#003] sha256:71992e9da9bb546a13850976f4e510735945a94dfdb398b4d70fad51fc2411cc - 0.0% (600 Bytes)

[#004] sha256:9d5f1091a8ef2263165e6f2280c766180d0003b90656583af682f1f0f9b3db13 - 0.0% (886 Bytes)

[#005] sha256:a4dd3404f1aea0e0fd95d989f76d5279b1c150148f1d1e30941e53bb6ec47eda - 0.0% (674 Bytes)


History
2020-06-09 01:20:56 UTC

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

2020-06-09 01:20:56 UTC

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

2020-06-17 00:04:23 UTC

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

2020-06-17 00:04:23 UTC

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

2020-06-17 00:04:24 UTC

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

2020-06-17 00:04:24 UTC

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

2020-06-17 00:05:39 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/mainline/debian/ buster nginx" >> /etc/apt/sources.list.d/nginx.list && apt-get update ;; *) echo "deb-src https://nginx.org/packages/mainline/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 curl && apt-get remove --purge --auto-remove -y && 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 && ln -sf /dev/stdout /var/log/nginx/access.log && ln -sf /dev/stderr /var/log/nginx/error.log && mkdir /docker-entrypoint.d

2020-06-17 00:05:40 UTC

/bin/sh -c sed -i 's,listen 80;,listen 8080;,' /etc/nginx/conf.d/default.conf && sed -i '/user nginx;/d' /etc/nginx/nginx.conf && sed -i 's,/var/run/nginx.pid,/tmp/nginx.pid,' /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 && chown -R 101:0 /var/cache/nginx && chmod -R g+w /var/cache/nginx && chown -R 101:0 /etc/nginx && chmod -R g+w /etc/nginx

2020-06-17 15:07:21 UTC

/bin/sh -c #(nop) COPY file:e78903b1250af520adac3ab3ed59cca0d2c1c6feaedefd364f644ea10e50df8a in /

2020-06-18 10:47:58 UTC

/bin/sh -c #(nop) COPY file:685c21a986968b232b31f7b9b8c486e56c331fb1f37724d06b9433fc6e339a6c in /docker-entrypoint.d

2020-06-18 10:47:59 UTC

/bin/sh -c #(nop) COPY file:4404369bdc07f3b9880a03ff19a3dd389d9a4a800d664fadc9ceda9fdabe0771 in /docker-entrypoint.d

2020-06-18 10:47:59 UTC

/bin/sh -c #(nop) ENTRYPOINT ["/docker-entrypoint.sh"]

2020-06-18 10:47:59 UTC

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

2020-06-18 10:47:59 UTC

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

2020-06-18 10:47:59 UTC

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

2020-06-18 10:48:00 UTC

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

Details
Created

2020-06-18 10:48:02 UTC

Size

57.5 MB

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

Environment
NGINX_VERSION

1.19.0

NJS_VERSION

0.4.1

PATH

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

PKG_RELEASE

1~buster


Layers

[#000] sha256:24d81022117207b0239d8a8023ca1724b7dde38cb08ce5b9199f59d475d1e600 - 41.23% (23.7 MB)

[#001] sha256:75c555e6a9cd36f5c30790df27b3dfef95d00e8904b2220887f5ff649251481a - 58.76% (33.8 MB)

[#002] sha256:cc5ae6e2057903b87638b518f496ad3d77f6c9d648805a41c76fffd8fbf81a08 - 0.01% (4.97 KB)

[#003] sha256:71992e9da9bb546a13850976f4e510735945a94dfdb398b4d70fad51fc2411cc - 0.0% (600 Bytes)

[#004] sha256:390cda5507d5557156499f096e181aaeb54397f84d320542d06a674c7fd2d337 - 0.0% (885 Bytes)

[#005] sha256:3a1aa61c1c033be6875e93ce9fe6be7500f3f7a18cc828f60a5d83f9600b185d - 0.0% (674 Bytes)


History
2020-05-14 22:38:03 UTC

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

2020-05-14 22:38:05 UTC

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

2020-06-02 20:29:34 UTC

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

2020-06-02 20:29:34 UTC

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

2020-06-02 20:29:35 UTC

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

2020-06-02 20:29:35 UTC

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

2020-06-03 00:35:48 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/mainline/debian/ buster nginx" >> /etc/apt/sources.list.d/nginx.list && apt-get update ;; *) echo "deb-src https://nginx.org/packages/mainline/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 curl && apt-get remove --purge --auto-remove -y && 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 && ln -sf /dev/stdout /var/log/nginx/access.log && ln -sf /dev/stderr /var/log/nginx/error.log && mkdir /docker-entrypoint.d

2020-06-05 17:00:40 UTC

/bin/sh -c sed -i 's,listen 80;,listen 8080;,' /etc/nginx/conf.d/default.conf && sed -i '/user nginx;/d' /etc/nginx/nginx.conf && sed -i 's,/var/run/nginx.pid,/tmp/nginx.pid,' /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 && chown -R 101:0 /var/cache/nginx && chmod -R g+w /var/cache/nginx && chown -R 101:0 /etc/nginx && chmod -R g+w /etc/nginx

2020-06-17 15:07:26 UTC

/bin/sh -c #(nop) COPY file:e78903b1250af520adac3ab3ed59cca0d2c1c6feaedefd364f644ea10e50df8a in /

2020-06-18 10:48:00 UTC

/bin/sh -c #(nop) COPY file:685c21a986968b232b31f7b9b8c486e56c331fb1f37724d06b9433fc6e339a6c in /docker-entrypoint.d

2020-06-18 10:48:01 UTC

/bin/sh -c #(nop) COPY file:4404369bdc07f3b9880a03ff19a3dd389d9a4a800d664fadc9ceda9fdabe0771 in /docker-entrypoint.d

2020-06-18 10:48:01 UTC

/bin/sh -c #(nop) ENTRYPOINT ["/docker-entrypoint.sh"]

2020-06-18 10:48:01 UTC

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

2020-06-18 10:48:01 UTC

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

2020-06-18 10:48:02 UTC

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

2020-06-18 10:48:02 UTC

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

Details
Created

2020-06-18 10:48:04 UTC

Size

54.4 MB

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

Environment
NGINX_VERSION

1.19.0

NJS_VERSION

0.4.1

PATH

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

PKG_RELEASE

1~buster


Layers

[#000] sha256:e41e28500352be59188c3d871a4b5a3f594350b860a9a36ed5808a35920bdae4 - 39.81% (21.7 MB)

[#001] sha256:aef06f2c61c5de956b6c36d2d3cb5e4cfff2549a04c2a9310425e15fb0f7a99c - 60.18% (32.7 MB)

[#002] sha256:b99bd578d530f094467f15952290452fd424f0fa8003c727d307d085ef1685d2 - 0.01% (4.96 KB)

[#003] sha256:71992e9da9bb546a13850976f4e510735945a94dfdb398b4d70fad51fc2411cc - 0.0% (600 Bytes)

[#004] sha256:7707fb977798777b35632a927b1900014b5a6ce611805c77e22698ed7afbe919 - 0.0% (886 Bytes)

[#005] sha256:82cea324bd5de2bc215310e20c6e465e2a3d17712311a6148c49bf069a08645b - 0.0% (674 Bytes)


History
2020-05-15 01:00:06 UTC

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

2020-05-15 01:00:07 UTC

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

2020-06-02 21:15:52 UTC

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

2020-06-02 21:15:52 UTC

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

2020-06-02 21:15:52 UTC

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

2020-06-02 21:15:52 UTC

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

2020-06-03 01:52: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/mainline/debian/ buster nginx" >> /etc/apt/sources.list.d/nginx.list && apt-get update ;; *) echo "deb-src https://nginx.org/packages/mainline/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 curl && apt-get remove --purge --auto-remove -y && 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 && ln -sf /dev/stdout /var/log/nginx/access.log && ln -sf /dev/stderr /var/log/nginx/error.log && mkdir /docker-entrypoint.d

2020-06-05 17:00:43 UTC

/bin/sh -c sed -i 's,listen 80;,listen 8080;,' /etc/nginx/conf.d/default.conf && sed -i '/user nginx;/d' /etc/nginx/nginx.conf && sed -i 's,/var/run/nginx.pid,/tmp/nginx.pid,' /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 && chown -R 101:0 /var/cache/nginx && chmod -R g+w /var/cache/nginx && chown -R 101:0 /etc/nginx && chmod -R g+w /etc/nginx

2020-06-17 15:07:29 UTC

/bin/sh -c #(nop) COPY file:e78903b1250af520adac3ab3ed59cca0d2c1c6feaedefd364f644ea10e50df8a in /

2020-06-18 10:48:02 UTC

/bin/sh -c #(nop) COPY file:685c21a986968b232b31f7b9b8c486e56c331fb1f37724d06b9433fc6e339a6c in /docker-entrypoint.d

2020-06-18 10:48:02 UTC

/bin/sh -c #(nop) COPY file:4404369bdc07f3b9880a03ff19a3dd389d9a4a800d664fadc9ceda9fdabe0771 in /docker-entrypoint.d

2020-06-18 10:48:03 UTC

/bin/sh -c #(nop) ENTRYPOINT ["/docker-entrypoint.sh"]

2020-06-18 10:48:03 UTC

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

2020-06-18 10:48:03 UTC

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

2020-06-18 10:48:03 UTC

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

2020-06-18 10:48:04 UTC

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

Details
Created

2020-06-18 10:48:05 UTC

Size

60 MB

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

Environment
NGINX_VERSION

1.19.0

NJS_VERSION

0.4.1

PATH

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

PKG_RELEASE

1~buster


Layers

[#000] sha256:8a7e1e68c24e5cac20ef26d29505c58456b561c431f0c683b66d1a0943f40dd4 - 41.09% (24.7 MB)

[#001] sha256:5af1a101c77a51e0124555327d9d91ea307ce2d303713d6aef7c1c843a403a30 - 58.9% (35.3 MB)

[#002] sha256:0dba27002a03020eecc6ad25d4f315a28906b5cde0757ce0b7c25686c5131816 - 0.01% (4.97 KB)

[#003] sha256:71992e9da9bb546a13850976f4e510735945a94dfdb398b4d70fad51fc2411cc - 0.0% (600 Bytes)

[#004] sha256:e36b552e0dd5215851635561a9c9bc00295c54150aab306870c1e7d2c8aba87c - 0.0% (886 Bytes)

[#005] sha256:51a6dd23ba2d2ab7d1bdd1a1a6b541e45a3a4ddb85fa011420de7e5a3a5fd90a - 0.0% (674 Bytes)


History
2020-05-15 12:44:06 UTC

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

2020-05-15 12:44:07 UTC

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

2020-06-02 22:17:57 UTC

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

2020-06-02 22:17:57 UTC

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

2020-06-02 22:17:57 UTC

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

2020-06-02 22:17:58 UTC

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

2020-06-03 03:12:58 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/mainline/debian/ buster nginx" >> /etc/apt/sources.list.d/nginx.list && apt-get update ;; *) echo "deb-src https://nginx.org/packages/mainline/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 curl && apt-get remove --purge --auto-remove -y && 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 && ln -sf /dev/stdout /var/log/nginx/access.log && ln -sf /dev/stderr /var/log/nginx/error.log && mkdir /docker-entrypoint.d

2020-06-05 17:00:45 UTC

/bin/sh -c sed -i 's,listen 80;,listen 8080;,' /etc/nginx/conf.d/default.conf && sed -i '/user nginx;/d' /etc/nginx/nginx.conf && sed -i 's,/var/run/nginx.pid,/tmp/nginx.pid,' /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 && chown -R 101:0 /var/cache/nginx && chmod -R g+w /var/cache/nginx && chown -R 101:0 /etc/nginx && chmod -R g+w /etc/nginx

2020-06-17 15:07:32 UTC

/bin/sh -c #(nop) COPY file:e78903b1250af520adac3ab3ed59cca0d2c1c6feaedefd364f644ea10e50df8a in /

2020-06-18 10:48:04 UTC

/bin/sh -c #(nop) COPY file:685c21a986968b232b31f7b9b8c486e56c331fb1f37724d06b9433fc6e339a6c in /docker-entrypoint.d

2020-06-18 10:48:04 UTC

/bin/sh -c #(nop) COPY file:4404369bdc07f3b9880a03ff19a3dd389d9a4a800d664fadc9ceda9fdabe0771 in /docker-entrypoint.d

2020-06-18 10:48:04 UTC

/bin/sh -c #(nop) ENTRYPOINT ["/docker-entrypoint.sh"]

2020-06-18 10:48:04 UTC

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

2020-06-18 10:48:05 UTC

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

2020-06-18 10:48:05 UTC

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

2020-06-18 10:48:05 UTC

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

Details
Created

2020-06-18 10:48:08 UTC

Size

58.9 MB

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

Environment
NGINX_VERSION

1.19.0

NJS_VERSION

0.4.1

PATH

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

PKG_RELEASE

1~buster


Layers

[#000] sha256:d22357c747999d33ec7501da2c05aa9e95079ebddefbcb326976c5ed5b176b3f - 41.68% (24.6 MB)

[#001] sha256:be818be0c7c3624477df529320cbcf627b8c8f17d0114d0b7df7507ccd05337d - 58.3% (34.4 MB)

[#002] sha256:84e95ed16118d8937712a713f4cc360c2185d2e1703ac5ae040b52913cb2167c - 0.01% (4.96 KB)

[#003] sha256:71992e9da9bb546a13850976f4e510735945a94dfdb398b4d70fad51fc2411cc - 0.0% (600 Bytes)

[#004] sha256:bc58c8d1eb1bde88b6468353bb1def14f6c7b2eabe81d35047b5977b39765b64 - 0.0% (886 Bytes)

[#005] sha256:f1df54df6cdbb14bb0dd7ebe8019709accc5557019083969732143ab57226735 - 0.0% (674 Bytes)


History
2020-05-15 04:48:19 UTC

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

2020-05-15 04:48:19 UTC

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

2020-06-02 23:33:33 UTC

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

2020-06-02 23:33:33 UTC

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

2020-06-02 23:33:34 UTC

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

2020-06-02 23:33:34 UTC

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

2020-06-04 13:05:54 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/mainline/debian/ buster nginx" >> /etc/apt/sources.list.d/nginx.list && apt-get update ;; *) echo "deb-src https://nginx.org/packages/mainline/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 curl && apt-get remove --purge --auto-remove -y && 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 && ln -sf /dev/stdout /var/log/nginx/access.log && ln -sf /dev/stderr /var/log/nginx/error.log && mkdir /docker-entrypoint.d

2020-06-05 17:00:50 UTC

/bin/sh -c sed -i 's,listen 80;,listen 8080;,' /etc/nginx/conf.d/default.conf && sed -i '/user nginx;/d' /etc/nginx/nginx.conf && sed -i 's,/var/run/nginx.pid,/tmp/nginx.pid,' /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 && chown -R 101:0 /var/cache/nginx && chmod -R g+w /var/cache/nginx && chown -R 101:0 /etc/nginx && chmod -R g+w /etc/nginx

2020-06-17 15:07:36 UTC

/bin/sh -c #(nop) COPY file:e78903b1250af520adac3ab3ed59cca0d2c1c6feaedefd364f644ea10e50df8a in /

2020-06-18 10:48:07 UTC

/bin/sh -c #(nop) COPY file:685c21a986968b232b31f7b9b8c486e56c331fb1f37724d06b9433fc6e339a6c in /docker-entrypoint.d

2020-06-18 10:48:08 UTC

/bin/sh -c #(nop) COPY file:4404369bdc07f3b9880a03ff19a3dd389d9a4a800d664fadc9ceda9fdabe0771 in /docker-entrypoint.d

2020-06-18 10:48:08 UTC

/bin/sh -c #(nop) ENTRYPOINT ["/docker-entrypoint.sh"]

2020-06-18 10:48:08 UTC

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

2020-06-18 10:48:08 UTC

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

2020-06-18 10:48:08 UTC

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

2020-06-18 10:48:08 UTC

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

Details
Created

2020-06-18 10:48:10 UTC

Size

66.7 MB

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

Environment
NGINX_VERSION

1.19.0

NJS_VERSION

0.4.1

PATH

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

PKG_RELEASE

1~buster


Layers

[#000] sha256:034d508ed7647e7139951a435acc95e0124f50c984670d0e53b4f5ba25cf6ed1 - 43.65% (29.1 MB)

[#001] sha256:fe562be197f335043d2d12c3cd574ae90359615173d0a223f64ac86eec1086c7 - 56.34% (37.6 MB)

[#002] sha256:85914113b348f8c6abb6af345b53b36a79268e4ef9c05578d0f67e30f318ff83 - 0.01% (4.96 KB)

[#003] sha256:71992e9da9bb546a13850976f4e510735945a94dfdb398b4d70fad51fc2411cc - 0.0% (600 Bytes)

[#004] sha256:2145e98add3111b113361b7cc2054f0bb4f7af6f660a1b4639e9f0fbfc1aa48f - 0.0% (886 Bytes)

[#005] sha256:d3f587498f22574c1ca4c94d878a48c26f1dc4d48251f3c5d292bbb20f0f01ff - 0.0% (674 Bytes)


History
2020-05-16 17:14:59 UTC

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

2020-05-16 17:15:04 UTC

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

2020-06-03 13:20:05 UTC

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

2020-06-03 13:20:05 UTC

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

2020-06-03 13:20:05 UTC

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

2020-06-03 13:20:05 UTC

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

2020-06-04 14:41:25 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/mainline/debian/ buster nginx" >> /etc/apt/sources.list.d/nginx.list && apt-get update ;; *) echo "deb-src https://nginx.org/packages/mainline/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 curl && apt-get remove --purge --auto-remove -y && 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 && ln -sf /dev/stdout /var/log/nginx/access.log && ln -sf /dev/stderr /var/log/nginx/error.log && mkdir /docker-entrypoint.d

2020-06-05 17:00:53 UTC

/bin/sh -c sed -i 's,listen 80;,listen 8080;,' /etc/nginx/conf.d/default.conf && sed -i '/user nginx;/d' /etc/nginx/nginx.conf && sed -i 's,/var/run/nginx.pid,/tmp/nginx.pid,' /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 && chown -R 101:0 /var/cache/nginx && chmod -R g+w /var/cache/nginx && chown -R 101:0 /etc/nginx && chmod -R g+w /etc/nginx

2020-06-17 15:07:39 UTC

/bin/sh -c #(nop) COPY file:e78903b1250af520adac3ab3ed59cca0d2c1c6feaedefd364f644ea10e50df8a in /

2020-06-18 10:48:09 UTC

/bin/sh -c #(nop) COPY file:685c21a986968b232b31f7b9b8c486e56c331fb1f37724d06b9433fc6e339a6c in /docker-entrypoint.d

2020-06-18 10:48:09 UTC

/bin/sh -c #(nop) COPY file:4404369bdc07f3b9880a03ff19a3dd389d9a4a800d664fadc9ceda9fdabe0771 in /docker-entrypoint.d

2020-06-18 10:48:09 UTC

/bin/sh -c #(nop) ENTRYPOINT ["/docker-entrypoint.sh"]

2020-06-18 10:48:09 UTC

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

2020-06-18 10:48:10 UTC

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

2020-06-18 10:48:10 UTC

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

2020-06-18 10:48:10 UTC

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

Details
Created

2020-06-18 10:48:11 UTC

Size

59.9 MB

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

Environment
NGINX_VERSION

1.19.0

NJS_VERSION

0.4.1

PATH

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

PKG_RELEASE

1~buster


Layers

[#000] sha256:bdb298e230dde60bfce8a476ae8ea8988828f7ec9f5452f38f46102a609f57c1 - 40.94% (24.5 MB)

[#001] sha256:8690b8de987530e5898c808de471366d68a822a002fc9c3b3fdbf3498ab554a9 - 59.05% (35.4 MB)

[#002] sha256:931c91ffacc9e83982144c1f48ed24b146ffaf0465485f6c666feebed298255e - 0.01% (4.96 KB)

[#003] sha256:71992e9da9bb546a13850976f4e510735945a94dfdb398b4d70fad51fc2411cc - 0.0% (600 Bytes)

[#004] sha256:0c5818ea935c59656c4e80ad0de4a789bf6e1dc7cfb0a2fdd8ca671223292805 - 0.0% (886 Bytes)

[#005] sha256:74e9529d85433d0716735654396b083110e6698f51eb2a1f442b0b7597b7e09f - 0.0% (674 Bytes)


History
2020-05-14 23:06:40 UTC

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

2020-05-14 23:06:41 UTC

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

2020-06-03 15:09:57 UTC

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

2020-06-03 15:09:57 UTC

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

2020-06-03 15:09:58 UTC

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

2020-06-03 15:09:58 UTC

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

2020-06-04 15:54:41 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/mainline/debian/ buster nginx" >> /etc/apt/sources.list.d/nginx.list && apt-get update ;; *) echo "deb-src https://nginx.org/packages/mainline/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 curl && apt-get remove --purge --auto-remove -y && 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 && ln -sf /dev/stdout /var/log/nginx/access.log && ln -sf /dev/stderr /var/log/nginx/error.log && mkdir /docker-entrypoint.d

2020-06-05 17:00:56 UTC

/bin/sh -c sed -i 's,listen 80;,listen 8080;,' /etc/nginx/conf.d/default.conf && sed -i '/user nginx;/d' /etc/nginx/nginx.conf && sed -i 's,/var/run/nginx.pid,/tmp/nginx.pid,' /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 && chown -R 101:0 /var/cache/nginx && chmod -R g+w /var/cache/nginx && chown -R 101:0 /etc/nginx && chmod -R g+w /etc/nginx

2020-06-17 15:07:42 UTC

/bin/sh -c #(nop) COPY file:e78903b1250af520adac3ab3ed59cca0d2c1c6feaedefd364f644ea10e50df8a in /

2020-06-18 10:48:10 UTC

/bin/sh -c #(nop) COPY file:685c21a986968b232b31f7b9b8c486e56c331fb1f37724d06b9433fc6e339a6c in /docker-entrypoint.d

2020-06-18 10:48:10 UTC

/bin/sh -c #(nop) COPY file:4404369bdc07f3b9880a03ff19a3dd389d9a4a800d664fadc9ceda9fdabe0771 in /docker-entrypoint.d

2020-06-18 10:48:11 UTC

/bin/sh -c #(nop) ENTRYPOINT ["/docker-entrypoint.sh"]

2020-06-18 10:48:11 UTC

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

2020-06-18 10:48:11 UTC

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

2020-06-18 10:48:11 UTC

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

2020-06-18 10:48:11 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