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

2023-03-14 17:55:22 UTC

Size

56.2 MB

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

Environment
CORS_ENABLED

0

NGINX_VERSION

1.23.3

NJS_VERSION

0.7.10

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:3f9582a2cbe7197f39185419c0ced2c986389f8fc6aa805e1f5c090eea6511e0 - 53.29% (30 MB)

[#001] sha256:9a8c6f28671867118799d40ec6748ffbd9eab3747503ca47a2a79856dffc7553 - 43.21% (24.3 MB)

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

[#003] sha256:73ae4d4511202a823260a789f97afb3a46b8c9172ae8d99d22a5a16ad2fa673b - 0.0% (956 Bytes)

[#004] sha256:6058e3569a68e825f1085592ab0bb04c29345726119ed059ad933c0d9af5f533 - 0.0% (772 Bytes)

[#005] sha256:3a1b8f20135650110763d223f82a25007e00b28b268e6a875fe87c85ba7570e4 - 0.0% (1.37 KB)

[#006] sha256:da5a6b4b244d0fd1e569c1f32018ecc136c2f3308fcdddb8b8d0c13b2a2a4b83 - 0.03% (17.2 KB)

[#007] sha256:860c4d89e0beb348361af3898679b2156584c46306231966bb36d2b1332cb50e - 0.0% (1.44 KB)

[#008] sha256:9cb37b5b8e791e3a594c0a2c9150df21491e8b0f90959cd926702408589d9240 - 0.0% (2.07 KB)

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

[#010] sha256:06a86e69afd0c46cf40c0ed1677e792def26de3f61d0cdc54903a10e0dfcddd4 - 3.42% (1.93 MB)

[#011] sha256:f25d27d4cd95e64df45c992a321b5690d03cd23140857e5e3fb6f20291973e0f - 0.03% (20.1 KB)


History
2023-03-01 04:09:58 UTC

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

2023-03-01 04:09:59 UTC

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

2023-03-01 18:42:53 UTC

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

2023-03-01 18:42:53 UTC

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

2023-03-01 18:42:53 UTC

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

2023-03-01 18:42:53 UTC

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

2023-03-01 18:43:11 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

2023-03-01 18:43:12 UTC

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

2023-03-01 18:43:12 UTC

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

2023-03-01 18:43:12 UTC

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

2023-03-01 18:43:12 UTC

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

2023-03-01 18:43:12 UTC

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

2023-03-01 18:43:12 UTC

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

2023-03-01 18:43:12 UTC

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

2023-03-01 18:43:12 UTC

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

2023-03-14 17:52:35 UTC

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

2023-03-14 17:52:35 UTC

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

2023-03-14 17:52:36 UTC

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

2023-03-14 17:52:37 UTC

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

2023-03-14 17:52:38 UTC

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

2023-03-14 17:52:39 UTC

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

2023-03-14 17:52:41 UTC

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

2023-03-14 17:52:42 UTC

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

2023-03-14 17:52:43 UTC

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

2023-03-14 17:52:44 UTC

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

2023-03-14 17:52:50 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 curl 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-03-14 17:55:21 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-03-14 17:55:21 UTC

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

2023-03-14 17:55:22 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