Namespace
budibase
Image / Tag
proxy:v2.2.14
Content Digest
sha256:f4c64f6b9aceecbcf3671b0988cdecbce5bb2b2c0ea4e2cb45576e8ef38ec542
Details
Created

2023-01-11 08:24:43 UTC

Size

54.2 MB

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

Environment
NGINX_ENVSUBST_OUTPUT_DIR

/etc/nginx

NGINX_VERSION

1.23.3

NJS_VERSION

0.7.9

PATH

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

PKG_RELEASE

1~bullseye

PROXY_RATE_LIMIT_API_PER_SECOND

20

PROXY_RATE_LIMIT_WEBHOOKS_PER_SECOND

10


Layers

[#000] sha256:8740c948ffd4c816ea7ca963f99ca52f4788baa23f228da9581a9ea2edd3fcd7 - 55.2% (29.9 MB)

[#001] sha256:d2c0556a17c5d136fc0387f936672d6922c0ee0c412e39f10bdb9abea3790815 - 44.78% (24.3 MB)

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

[#003] sha256:693c3ffa8f43a3ae70d512c7add694b6c66a3d69262c4433acd3e0aa6d0d8b8b - 0.0% (958 Bytes)

[#004] sha256:8316c5e80e6d3abc453220bd5858bb7bd5ac08d8b79a13378b500d6e70f91c1d - 0.0% (772 Bytes)

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

[#006] sha256:656a477b82896e6e77023f0bf372406d884c6f38682802ae687a3bac1fbbeeab - 0.0% (2.26 KB)

[#007] sha256:1d238dbe3120aeeb3802431e027c954932524b968e5d0ae06344b20fe19b43e7 - 0.0% (164 Bytes)

[#008] sha256:777ba4ea2e6dcfabdc9ca47021b9cef114bda9039738ef25967f7410ac2d50ea - 0.0% (458 Bytes)

[#009] sha256:3011874a283691153ca953de2abf358a1c2f9a76bfbf110d7eb774ad80f27049 - 0.0% (455 Bytes)

[#010] sha256:0e07bfe11b084ef3c7288f8d81f983a58cc2d0aa88906136ed4c0353f3f0d671 - 0.0% (1.56 KB)


History
2023-01-11 02:34:44 UTC

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

2023-01-11 02:34:44 UTC

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

2023-01-11 06:30:49 UTC

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

2023-01-11 06:30:49 UTC

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

2023-01-11 06:30:49 UTC

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

2023-01-11 06:30:49 UTC

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

2023-01-11 06:31:08 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-01-11 06:31:08 UTC

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

2023-01-11 06:31:08 UTC

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

2023-01-11 06:31:08 UTC

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

2023-01-11 06:31:09 UTC

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

2023-01-11 06:31:09 UTC

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

2023-01-11 06:31:09 UTC

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

2023-01-11 06:31:09 UTC

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

2023-01-11 06:31:09 UTC

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

2023-01-11 08:24:36 UTC

/bin/sh -c #(nop) ENV NGINX_ENVSUBST_OUTPUT_DIR=/etc/nginx

2023-01-11 08:24:38 UTC

/bin/sh -c #(nop) COPY file:8fb8015989979594928538d38e7df713ce73243604ae2b7eca5057c5bd943489 in /etc/nginx/templates/nginx.conf.template

2023-01-11 08:24:38 UTC

/bin/sh -c rm -rf /docker-entrypoint.d/10-listen-on-ipv6-by-default.sh

2023-01-11 08:24:40 UTC

/bin/sh -c #(nop) COPY file:1b9262da4aa2957b4735a3afab3ea6f58b12576afd6a6208655e9c5575abb5ac in /docker-entrypoint.d/80-listen-on-ipv6-by-default.sh

2023-01-11 08:24:40 UTC

/bin/sh -c chmod +x /docker-entrypoint.d/80-listen-on-ipv6-by-default.sh

2023-01-11 08:24:42 UTC

/bin/sh -c #(nop) COPY file:94befcd3a7e51d797eac63d09f28cfb8ebcf281c7a3940c7ba7d2a0c6cad879d in /usr/share/nginx/html/error.html

2023-01-11 08:24:42 UTC

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

2023-01-11 08:24:43 UTC

/bin/sh -c #(nop) ENV PROXY_RATE_LIMIT_API_PER_SECOND=20

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