Namespace
nginxinc
Image / Tag
nginx-s3-gateway:latest-20220720
Content Digest
sha256:ca20f5f3bef82340f31adb7f64051c29958cee15f9271c0079a3f7cdbf763df6
Details
Created

2022-07-20 17:07:47 UTC

Size

54.1 MB

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

Environment
NGINX_VERSION

1.23.1

NJS_VERSION

0.7.6

PATH

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

PKG_RELEASE

1~bullseye

PROXY_CACHE_VALID_FORBIDDEN

30s

PROXY_CACHE_VALID_NOTFOUND

1m

PROXY_CACHE_VALID_OK

1h


Layers

[#000] sha256:461246efe0a75316d99afdbf348f7063b57b0caeee8daab775f1f08152ea36f4 - 55.28% (29.9 MB)

[#001] sha256:060bfa6be22e53299ac39d7ab8bba5670d626708075dfa6b42275549536d0052 - 44.68% (24.2 MB)

[#002] sha256:b34d5ba6fa9efae832fc4ead1d1af29f1c0fb5bdd47b66efaa41e4f7ba24abe0 - 0.0% (603 Bytes)

[#003] sha256:8128ac56c745643de7d7838b8aac5bbb559b57dbae37a14c9e61bc029c408a75 - 0.0% (894 Bytes)

[#004] sha256:44d36245a8c912579577e3b127a9cafccb1982554aab29854df4d7137777727d - 0.0% (667 Bytes)

[#005] sha256:ebcc2cc821e6dc8618597201594d3019d94747655fe5fd454d95ea25b575a7c4 - 0.0% (1.36 KB)

[#006] sha256:98ef5c5f510d2ff149efe768e241afcae45c59d9ab64358ca9d66c0ec3be1a1f - 0.02% (13.1 KB)

[#007] sha256:033178ec6f1970706af393d7ac7f21bef33cf6062c4fe1933c366b7714df5c05 - 0.0% (1.04 KB)

[#008] sha256:cd80349b723a3e051946f2136559d7e665ae527381ee22b284cb47d5335b0df6 - 0.0% (1.21 KB)

[#009] sha256:017c03f39d8f1e747d00640c6b2d57b2873bd855eda1bb3d4dde7efa6d51faf1 - 0.0% (680 Bytes)

[#010] sha256:2d3c34ad5be425efdcea1df51d06dd6d8951435085954b949efc6faaf4d01dd7 - 0.0% (1.87 KB)


History
2022-07-12 01:20:10 UTC

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

2022-07-12 01:20:10 UTC

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

2022-07-12 05:00:30 UTC

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

2022-07-19 19:19:51 UTC

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

2022-07-19 19:19:51 UTC

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

2022-07-19 19:19:51 UTC

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

2022-07-19 19:20:10 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 hkp://keyserver.ubuntu.com: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-njs=${NGINX_VERSION}+${NJS_VERSION}-${PKG_RELEASE} " && case "$dpkgArch" in amd64|arm64) echo "deb https://nginx.org/packages/mainline/debian/ bullseye nginx" >> /etc/apt/sources.list.d/nginx.list && apt-get update ;; *) echo "deb-src https://nginx.org/packages/mainline/debian/ bullseye 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

2022-07-19 19:20:10 UTC

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

2022-07-19 19:20:10 UTC

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

2022-07-19 19:20:11 UTC

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

2022-07-19 19:20:11 UTC

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

2022-07-19 19:20:11 UTC

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

2022-07-19 19:20:11 UTC

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

2022-07-19 19:20:11 UTC

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

2022-07-19 19:20:11 UTC

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

2022-07-20 17:07:35 UTC

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

2022-07-20 17:07:35 UTC

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

2022-07-20 17:07:36 UTC

/bin/sh -c #(nop) ENV PROXY_CACHE_VALID_OK=1h

2022-07-20 17:07:37 UTC

/bin/sh -c #(nop) ENV PROXY_CACHE_VALID_NOTFOUND=1m

2022-07-20 17:07:38 UTC

/bin/sh -c #(nop) ENV PROXY_CACHE_VALID_FORBIDDEN=30s

2022-07-20 17:07:40 UTC

/bin/sh -c #(nop) COPY dir:d990887bcbec3cc37b49d23268d7079ebb1d2ca16ac79b759adc5fde318bb5e0 in /etc

2022-07-20 17:07:41 UTC

/bin/sh -c #(nop) COPY file:6f969f887849c3d4598fb04728ceb9d6e7c6ddc3f858a4b801d9c0a8df42b0d5 in /docker-entrypoint.sh

2022-07-20 17:07:42 UTC

/bin/sh -c #(nop) COPY file:962dc60b48f71593726eed16cbbb3123d1c5eb9ac54d5b8d947271ceab400c94 in /docker-entrypoint.d/00-check-for-required-env.sh

2022-07-20 17:07:43 UTC

/bin/sh -c #(nop) COPY dir:6d3191e2b57abf053153f60e15b11554008955dfecbecfaece0d457f0d261639 in /etc

2022-07-20 17:07:47 UTC

/bin/sh -c set -eux export DEBIAN_FRONTEND=noninteractive; mkdir -p /var/cache/nginx/s3_proxy; chown nginx:nginx /var/cache/nginx/s3_proxy; chmod -R -v +x /docker-entrypoint.sh /docker-entrypoint.d/*.sh; echo "deb https://nginx.org/packages/mainline/debian/ $(echo $PKG_RELEASE | cut -f2 -d~) nginx" >> /etc/apt/sources.list.d/nginx.list; apt-get update; apt-get install --no-install-recommends --no-install-suggests --yes nginx-module-njs=${NGINX_VERSION}+${NJS_VERSION}-${PKG_RELEASE}; apt-get remove --purge --auto-remove --yes; rm -rf /var/lib/apt/lists/* /etc/apt/sources.list.d/nginx.list

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