Namespace
nginxinc
Image / Tag
nginx-s3-gateway:unprivileged-oss-20230703
Content Digest
sha256:acb50bcd718963e47c8056acb2002ac8fa24a6b8de106697b0c9e130cd46bcfc
Details
Created

2023-07-03 21:08:40 UTC

Size

54.6 MB

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

Environment
CORS_ENABLED

0

DIRECTORY_LISTING_PATH_PREFIX

NGINX_VERSION

1.24.0

NJS_VERSION

0.7.12

PATH

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

PKG_RELEASE

1~bullseye

PROXY_CACHE_INACTIVE

60m

PROXY_CACHE_MAX_SIZE

10g

PROXY_CACHE_VALID_FORBIDDEN

30s

PROXY_CACHE_VALID_NOTFOUND

1m

PROXY_CACHE_VALID_OK

1h


Layers

[#000] sha256:759700526b7894aa9c150feb2ebfcd00cf06d2890df739e71555edcfd13669e3 - 54.88% (30 MB)

[#001] sha256:2fa2f79fb0f14c70a9ba1e72391dd76a64e30d69ccc84d111bec85659f361984 - 44.72% (24.4 MB)

[#002] sha256:d5448487c8f87a0435c7498470f02abce8057686574b967f1ca65dad23a4a563 - 0.0% (626 Bytes)

[#003] sha256:9ff8c9422a9894136a85b5c32607051485a75f82bd6bfa15499f9b5d93d5ab12 - 0.0% (957 Bytes)

[#004] sha256:7f56243e90abdd227773640f6f2367c76117415d39443bb87224e9b6a557ab16 - 0.0% (772 Bytes)

[#005] sha256:92819d933b6c4fdf25ca37d61e8348b9e0694f626a6581b23858992892ef4b65 - 0.0% (1.37 KB)

[#006] sha256:33a98e8c547f82c36a8f4999b50ee924be5ab595011c9361a5c52920b342728d - 0.03% (17.5 KB)

[#007] sha256:4246b19d50e8ddccbb728a0692247e80bc4821d1ca7d332f574690b712b05c68 - 0.0% (1.44 KB)

[#008] sha256:2cccda5c6568ed02a56b6fdd09582f9ef7f4f295d97b24764ad0d648c5e6b340 - 0.0% (2.29 KB)

[#009] sha256:b42a80318084076672c1b071564da2c573ac53226dc86a90f00d0c32bf32d067 - 0.0% (683 Bytes)

[#010] sha256:213b4574f3794cbd2d84751043541b73c8bfc33a881fa22ba37dd06ec4d9ffbd - 0.31% (175 KB)

[#011] sha256:bc0eeae6884c01464d48527bb30c0830ad706338dfeacc1384d08673a14d1fc0 - 0.04% (20.4 KB)


History
2023-06-12 23:21:07 UTC

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

2023-06-12 23:21:08 UTC

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

2023-06-13 07:15:12 UTC

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

2023-06-13 07:15:53 UTC

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

2023-06-13 07:15:53 UTC

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

2023-06-13 07:15:53 UTC

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

2023-06-13 07:16:09 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; NGINX_GPGKEY_PATH=/usr/share/keyrings/nginx-archive-keyring.gpg; export GNUPGHOME="$(mktemp -d)"; found=''; for server in hkp://keyserver.ubuntu.com:80 pgp.mit.edu ; do echo "Fetching GPG key $NGINX_GPGKEY from $server"; gpg1 --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; gpg1 --export "$NGINX_GPGKEY" > "$NGINX_GPGKEY_PATH" ; rm -rf "$GNUPGHOME"; 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 [signed-by=$NGINX_GPGKEY_PATH] https://nginx.org/packages/debian/ bullseye nginx" >> /etc/apt/sources.list.d/nginx.list && apt-get update ;; *) echo "deb-src [signed-by=$NGINX_GPGKEY_PATH] https://nginx.org/packages/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

2023-06-13 07:16:09 UTC

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

2023-06-13 07:16:09 UTC

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

2023-06-13 07:16:09 UTC

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

2023-06-13 07:16:10 UTC

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

2023-06-13 07:16:10 UTC

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

2023-06-13 07:16:10 UTC

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

2023-06-13 07:16:10 UTC

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

2023-06-13 07:16:10 UTC

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

2023-07-03 21:05:44 UTC

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

2023-07-03 21:05:45 UTC

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

2023-07-03 21:05:46 UTC

/bin/sh -c #(nop) ENV PROXY_CACHE_MAX_SIZE=10g

2023-07-03 21:05:47 UTC

/bin/sh -c #(nop) ENV PROXY_CACHE_INACTIVE=60m

2023-07-03 21:05:48 UTC

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

2023-07-03 21:05:49 UTC

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

2023-07-03 21:05:50 UTC

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

2023-07-03 21:05:51 UTC

/bin/sh -c #(nop) ENV CORS_ENABLED=0

2023-07-03 21:05:52 UTC

/bin/sh -c #(nop) ENV DIRECTORY_LISTING_PATH_PREFIX=

2023-07-03 21:05:54 UTC

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

2023-07-03 21:05:55 UTC

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

2023-07-03 21:05:56 UTC

/bin/sh -c #(nop) COPY dir:3b85ac1fa238a477f3b95c79490dc0e19810742fba90a273cc4ee09ba3f73212 in /docker-entrypoint.d/

2023-07-03 21:05:57 UTC

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

2023-07-03 21:06:03 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 [signed-by=/usr/share/keyrings/nginx-archive-keyring.gpg] 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 curl libedit2 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

2023-07-03 21:08:38 UTC

/bin/sh -c sed -i "/^server {/a \ listen 8080;" /etc/nginx/templates/default.conf.template && 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 nginx:0 /var/cache/nginx && chmod -R g+w /var/cache/nginx && chown -R nginx:0 /etc/nginx && chmod -R g+w /etc/nginx

2023-07-03 21:08:39 UTC

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

2023-07-03 21:08:40 UTC

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

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