Namespace
nginxinc
Image / Tag
nginx-s3-gateway:unprivileged-oss-20230223
Content Digest
sha256:5cc6daac619e733839192a244236ad7a83646c8e2f242cd50b2fc3efc6203b20
Details
Created

2023-02-23 22:07:56 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:bb263680fed18eecdc67f885094df6f589bafc19004839d7fdf141df236a61aa - 53.29% (30 MB)

[#001] sha256:258f176fd22609802ed5def498ce4c7d1fa80a8ddba258b6e9eca0364df3ddb3 - 43.21% (24.3 MB)

[#002] sha256:a0bc35e7077319c74cd587e1c911894c0bc003e1783c0bc2e59e351d41cfa543 - 0.0% (627 Bytes)

[#003] sha256:077b9569ff86b205b47334ce8fa1c4bcf55b124b2fe880f40b56f9932f856f68 - 0.0% (958 Bytes)

[#004] sha256:3082a16f3b619613a40d0b9056c6142493980314187ef6b6281909a40f6b7147 - 0.0% (773 Bytes)

[#005] sha256:7e9b29976cce358fbdd777b91ce2c52d18090dd1507d0616793e9ce8cc15979c - 0.0% (1.37 KB)

[#006] sha256:b1374de03f28d8cdd6484b675344f49dd64dd905c90f99ceab5456179bccea1e - 0.03% (16.4 KB)

[#007] sha256:3cee167ec2051caa489f4a74f635cb6351fdecb59467798e3b9e53b38b4dfc26 - 0.0% (1.44 KB)

[#008] sha256:0862f4f538296648b65c6fb5ef87587b5becd29ef3bd764f066e43b2e587c8e8 - 0.0% (2.05 KB)

[#009] sha256:0dbfc8d1f728c04aa06b556a812e0e10004da1b41813195be1cdd0f3ad4686fa - 0.0% (681 Bytes)

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

[#011] sha256:8b1d9d85abfb16bcec442d2500510eb096cdf9bb3894563621bef3789fdbb124 - 0.03% (19.3 KB)


History
2023-02-09 03:20:20 UTC

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

2023-02-09 03:20:20 UTC

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

2023-02-09 04:36:02 UTC

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

2023-02-09 04:36:02 UTC

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

2023-02-09 04:36:02 UTC

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

2023-02-09 04:36:02 UTC

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

2023-02-09 04:36:21 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-02-09 04:36:21 UTC

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

2023-02-09 04:36:21 UTC

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

2023-02-09 04:36:21 UTC

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

2023-02-09 04:36:21 UTC

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

2023-02-09 04:36:22 UTC

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

2023-02-09 04:36:22 UTC

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

2023-02-09 04:36:22 UTC

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

2023-02-09 04:36:22 UTC

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

2023-02-23 22:05:53 UTC

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

2023-02-23 22:05:54 UTC

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

2023-02-23 22:05:55 UTC

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

2023-02-23 22:05:56 UTC

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

2023-02-23 22:05:57 UTC

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

2023-02-23 22:05:58 UTC

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

2023-02-23 22:06:00 UTC

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

2023-02-23 22:06:01 UTC

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

2023-02-23 22:06:02 UTC

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

2023-02-23 22:06:03 UTC

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

2023-02-23 22:06:07 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

2023-02-23 22:07:55 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-02-23 22:07:55 UTC

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

2023-02-23 22:07:56 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