docker.io/nginxinc/nginx-unprivileged:1.29.0-alpine3.22-otel linux/amd64

docker.io/nginxinc/nginx-unprivileged:1.29.0-alpine3.22-otel - 国内下载镜像源 浏览次数:18
这里是镜像描述: nginxinc/nginx-unprivileged 这是一个基于NGINX的Web服务器镜像。该镜像提供了一个可以运行在容器中的NGINX实例,可以用来提供静态和动态Web服务。 该镜像基于Ubuntu 20.04 LTS构建,包含了NGINX 1.21.0版本。它支持多种协议,如HTTP、HTTPS、FTP等,并且支持反向代理和缓存功能。 您可以使用这个镜像来快速部署一个NGINX服务,而无需担心宿主机环境的配置问题。
源镜像 docker.io/nginxinc/nginx-unprivileged:1.29.0-alpine3.22-otel
国内镜像 swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/nginxinc/nginx-unprivileged:1.29.0-alpine3.22-otel
镜像ID sha256:f3f4a72c9b09d7c7a59238cebd437c1aeb3ae00d61fa84d4e8bc4f105bed6ccc
镜像TAG 1.29.0-alpine3.22-otel
大小 88.07MB
镜像源 docker.io
项目信息 Docker-Hub主页 🚀项目TAG 🚀
CMD nginx -g daemon off;
启动入口 /docker-entrypoint.sh
工作目录 /
OS/平台 linux/amd64
浏览量 18 次
贡献者
镜像创建 2025-08-18T04:02:11.882209986Z
同步时间 2026-01-23 16:00
更新时间 2026-01-24 16:59
开放端口
8080/tcp
环境变量
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin NGINX_VERSION=1.29.0 PKG_RELEASE=1 DYNPKG_RELEASE=1 NJS_VERSION=0.9.0 NJS_RELEASE=1 OTEL_VERSION=0.1.2
镜像标签
NGINX Docker Maintainers <docker-maint@nginx.com>: maintainer 2025-08-18T04:02:03.436Z: org.opencontainers.image.created Unprivileged NGINX Dockerfiles: org.opencontainers.image.description Apache-2.0: org.opencontainers.image.licenses a773d561b235f57f1c2417dbdef42348631ab0e6: org.opencontainers.image.revision https://github.com/nginx/docker-nginx-unprivileged: org.opencontainers.image.source docker-nginx-unprivileged: org.opencontainers.image.title https://github.com/nginx/docker-nginx-unprivileged: org.opencontainers.image.url 1.29.0-alpine-otel: org.opencontainers.image.version

Docker拉取命令

docker pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/nginxinc/nginx-unprivileged:1.29.0-alpine3.22-otel
docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/nginxinc/nginx-unprivileged:1.29.0-alpine3.22-otel  docker.io/nginxinc/nginx-unprivileged:1.29.0-alpine3.22-otel

Containerd拉取命令

ctr images pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/nginxinc/nginx-unprivileged:1.29.0-alpine3.22-otel
ctr images tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/nginxinc/nginx-unprivileged:1.29.0-alpine3.22-otel  docker.io/nginxinc/nginx-unprivileged:1.29.0-alpine3.22-otel

Shell快速替换命令

sed -i 's#nginxinc/nginx-unprivileged:1.29.0-alpine3.22-otel#swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/nginxinc/nginx-unprivileged:1.29.0-alpine3.22-otel#' deployment.yaml

Ansible快速分发-Docker

#ansible k8s -m shell -a 'docker pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/nginxinc/nginx-unprivileged:1.29.0-alpine3.22-otel && docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/nginxinc/nginx-unprivileged:1.29.0-alpine3.22-otel  docker.io/nginxinc/nginx-unprivileged:1.29.0-alpine3.22-otel'

Ansible快速分发-Containerd

#ansible k8s -m shell -a 'ctr images pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/nginxinc/nginx-unprivileged:1.29.0-alpine3.22-otel && ctr images tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/nginxinc/nginx-unprivileged:1.29.0-alpine3.22-otel  docker.io/nginxinc/nginx-unprivileged:1.29.0-alpine3.22-otel'

镜像构建历史


# 2025-08-18 12:02:11  0.00B 指定运行容器时使用的用户
USER 101
                        
# 2025-08-18 12:02:11  35.60MB 执行命令并创建新的镜像层
RUN |2 UID=101 GID=101 /bin/sh -c set -x     && apkArch="$(cat /etc/apk/arch)"     && nginxPackages="         nginx=${NGINX_VERSION}-r${PKG_RELEASE}         nginx-module-xslt=${NGINX_VERSION}-r${DYNPKG_RELEASE}         nginx-module-geoip=${NGINX_VERSION}-r${DYNPKG_RELEASE}         nginx-module-image-filter=${NGINX_VERSION}-r${DYNPKG_RELEASE}         nginx-module-njs=${NGINX_VERSION}.${NJS_VERSION}-r${NJS_RELEASE}         nginx-module-otel=${NGINX_VERSION}.${OTEL_VERSION}-r${PKG_RELEASE}     "     && apk add --no-cache --virtual .checksum-deps         openssl     && case "$apkArch" in         x86_64|aarch64)             apk add -X "https://nginx.org/packages/mainline/alpine/v$(egrep -o '^[0-9]+\.[0-9]+' /etc/alpine-release)/main" --no-cache $nginxPackages             ;;         *)             set -x             && tempDir="$(mktemp -d)"             && chown nobody:nobody $tempDir             && apk add --no-cache --virtual .build-deps                 gcc                 libc-dev                 make                 openssl-dev                 pcre2-dev                 zlib-dev                 linux-headers                 cmake                 bash                 alpine-sdk                 findutils                 curl                 xz                 protobuf-dev                 grpc-dev             && su nobody -s /bin/sh -c "                 export HOME=${tempDir}                 && cd ${tempDir}                 && curl -f -L -O https://github.com/nginx/pkg-oss/archive/${NGINX_VERSION}-${PKG_RELEASE}.tar.gz                 && PKGOSSCHECKSUM=\"400593da45fc0195a01138c0c23a06059da1c6a2e26959f2c4c95fbaf63436ff211665ef01392d2b775a0133d5b57680dabe51b840a55f82e89621e84cf651d1 *${NGINX_VERSION}-${PKG_RELEASE}.tar.gz\"                 && if [ \"\$(openssl sha512 -r ${NGINX_VERSION}-${PKG_RELEASE}.tar.gz)\" = \"\$PKGOSSCHECKSUM\" ]; then                     echo \"pkg-oss tarball checksum verification succeeded!\";                 else                     echo \"pkg-oss tarball checksum verification failed!\";                     exit 1;                 fi                 && tar xzvf ${NGINX_VERSION}-${PKG_RELEASE}.tar.gz                 && cd pkg-oss-${NGINX_VERSION}-${PKG_RELEASE}                 && cd alpine                 && make module-otel                 && apk index --allow-untrusted -o ${tempDir}/packages/alpine/${apkArch}/APKINDEX.tar.gz ${tempDir}/packages/alpine/${apkArch}/*.apk                 && abuild-sign -k ${tempDir}/.abuild/abuild-key.rsa ${tempDir}/packages/alpine/${apkArch}/APKINDEX.tar.gz                 "             && cp ${tempDir}/.abuild/abuild-key.rsa.pub /etc/apk/keys/             && apk del --no-network .build-deps             && apk add -X ${tempDir}/packages/alpine/ --no-cache $nginxPackages             ;;     esac     && apk del --no-network .checksum-deps     && if [ -n "$tempDir" ]; then rm -rf "$tempDir"; fi     && if [ -f "/etc/apk/keys/abuild-key.rsa.pub" ]; then rm -f /etc/apk/keys/abuild-key.rsa.pub; fi # buildkit
                        
# 2025-08-18 12:02:11  0.00B 指定运行容器时使用的用户
USER root
                        
# 2025-08-18 12:02:11  0.00B 定义构建参数
ARG GID=101
                        
# 2025-08-18 12:02:11  0.00B 定义构建参数
ARG UID=101
                        
# 2025-08-18 12:02:11  0.00B 设置环境变量 OTEL_VERSION
ENV OTEL_VERSION=0.1.2
                        
# 2025-08-18 10:04:08  0.00B 指定运行容器时使用的用户
USER 101
                        
# 2025-08-18 10:04:08  39.99MB 执行命令并创建新的镜像层
RUN |2 UID=101 GID=101 /bin/sh -c set -x     && apkArch="$(cat /etc/apk/arch)"     && nginxPackages="         nginx=${NGINX_VERSION}-r${PKG_RELEASE}         nginx-module-xslt=${NGINX_VERSION}-r${DYNPKG_RELEASE}         nginx-module-geoip=${NGINX_VERSION}-r${DYNPKG_RELEASE}         nginx-module-image-filter=${NGINX_VERSION}-r${DYNPKG_RELEASE}         nginx-module-njs=${NGINX_VERSION}.${NJS_VERSION}-r${NJS_RELEASE}     "     && apk add --no-cache --virtual .checksum-deps         openssl     && case "$apkArch" in         x86_64|aarch64)             apk add -X "https://nginx.org/packages/mainline/alpine/v$(egrep -o '^[0-9]+\.[0-9]+' /etc/alpine-release)/main" --no-cache $nginxPackages             ;;         *)             set -x             && tempDir="$(mktemp -d)"             && chown nobody:nobody $tempDir             && apk add --no-cache --virtual .build-deps                 gcc                 libc-dev                 make                 openssl-dev                 pcre2-dev                 zlib-dev                 linux-headers                 libxslt-dev                 gd-dev                 geoip-dev                 libedit-dev                 bash                 alpine-sdk                 findutils                 curl             && su nobody -s /bin/sh -c "                 export HOME=${tempDir}                 && cd ${tempDir}                 && curl -f -L -O https://github.com/nginx/pkg-oss/archive/${NGINX_VERSION}-${PKG_RELEASE}.tar.gz                 && PKGOSSCHECKSUM=\"400593da45fc0195a01138c0c23a06059da1c6a2e26959f2c4c95fbaf63436ff211665ef01392d2b775a0133d5b57680dabe51b840a55f82e89621e84cf651d1 *${NGINX_VERSION}-${PKG_RELEASE}.tar.gz\"                 && if [ \"\$(openssl sha512 -r ${NGINX_VERSION}-${PKG_RELEASE}.tar.gz)\" = \"\$PKGOSSCHECKSUM\" ]; then                     echo \"pkg-oss tarball checksum verification succeeded!\";                 else                     echo \"pkg-oss tarball checksum verification failed!\";                     exit 1;                 fi                 && tar xzvf ${NGINX_VERSION}-${PKG_RELEASE}.tar.gz                 && cd pkg-oss-${NGINX_VERSION}-${PKG_RELEASE}                 && cd alpine                 && make module-geoip module-image-filter module-njs module-xslt                 && apk index --allow-untrusted -o ${tempDir}/packages/alpine/${apkArch}/APKINDEX.tar.gz ${tempDir}/packages/alpine/${apkArch}/*.apk                 && abuild-sign -k ${tempDir}/.abuild/abuild-key.rsa ${tempDir}/packages/alpine/${apkArch}/APKINDEX.tar.gz                 "             && cp ${tempDir}/.abuild/abuild-key.rsa.pub /etc/apk/keys/             && apk del --no-network .build-deps             && apk add -X ${tempDir}/packages/alpine/ --no-cache $nginxPackages             ;;     esac     && apk del --no-network .checksum-deps     && if [ -n "$tempDir" ]; then rm -rf "$tempDir"; fi     && if [ -f "/etc/apk/keys/abuild-key.rsa.pub" ]; then rm -f /etc/apk/keys/abuild-key.rsa.pub; fi     && apk add --no-cache curl ca-certificates # buildkit
                        
# 2025-08-18 10:04:08  0.00B 指定运行容器时使用的用户
USER root
                        
# 2025-08-18 10:04:08  0.00B 定义构建参数
ARG GID=101
                        
# 2025-08-18 10:04:08  0.00B 定义构建参数
ARG UID=101
                        
# 2025-08-18 10:04:08  0.00B 设置环境变量 NJS_RELEASE
ENV NJS_RELEASE=1
                        
# 2025-08-18 10:04:08  0.00B 设置环境变量 NJS_VERSION
ENV NJS_VERSION=0.9.0
                        
# 2025-08-18 08:27:54  0.00B 设置默认要执行的命令
CMD ["nginx" "-g" "daemon off;"]
                        
# 2025-08-18 08:27:54  0.00B 指定运行容器时使用的用户
USER 101
                        
# 2025-08-18 08:27:54  0.00B 设置停止容器时发送的系统调用信号
STOPSIGNAL SIGQUIT
                        
# 2025-08-18 08:27:54  0.00B 声明容器运行时监听的端口
EXPOSE map[8080/tcp:{}]
                        
# 2025-08-18 08:27:54  0.00B 配置容器启动时运行的命令
ENTRYPOINT ["/docker-entrypoint.sh"]
                        
# 2025-08-18 08:27:54  4.62KB 复制新文件或目录到容器中
COPY 30-tune-worker-processes.sh /docker-entrypoint.d # buildkit
                        
# 2025-08-18 08:27:54  3.01KB 复制新文件或目录到容器中
COPY 20-envsubst-on-templates.sh /docker-entrypoint.d # buildkit
                        
# 2025-08-18 08:27:54  389.00B 复制新文件或目录到容器中
COPY 15-local-resolvers.envsh /docker-entrypoint.d # buildkit
                        
# 2025-08-18 08:27:54  2.13KB 复制新文件或目录到容器中
COPY 10-listen-on-ipv6-by-default.sh /docker-entrypoint.d # buildkit
                        
# 2025-08-18 08:27:54  1.62KB 复制新文件或目录到容器中
COPY docker-entrypoint.sh / # buildkit
                        
# 2025-08-18 08:27:54  10.65KB 执行命令并创建新的镜像层
RUN |2 UID=101 GID=101 /bin/sh -c sed -i 's,listen       80;,listen       8080;,' /etc/nginx/conf.d/default.conf     && sed -i '/user  nginx;/d' /etc/nginx/nginx.conf     && sed -i 's,\(/var\)\{0\,1\}/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 $UID:0 /var/cache/nginx     && chmod -R g+w /var/cache/nginx     && chown -R $UID:0 /etc/nginx     && chmod -R g+w /etc/nginx # buildkit
                        
# 2025-08-18 08:27:53  4.14MB 执行命令并创建新的镜像层
RUN |2 UID=101 GID=101 /bin/sh -c set -x     && addgroup -g $GID -S nginx || true     && adduser -S -D -H -u $UID -h /var/cache/nginx -s /sbin/nologin -G nginx -g nginx nginx || true     && apkArch="$(cat /etc/apk/arch)"     && nginxPackages="         nginx=${NGINX_VERSION}-r${PKG_RELEASE}     "     && apk add --no-cache --virtual .checksum-deps         openssl     && case "$apkArch" in         x86_64|aarch64)             set -x             && KEY_SHA512="e09fa32f0a0eab2b879ccbbc4d0e4fb9751486eedda75e35fac65802cc9faa266425edf83e261137a2f4d16281ce2c1a5f4502930fe75154723da014214f0655"             && wget -O /tmp/nginx_signing.rsa.pub https://nginx.org/keys/nginx_signing.rsa.pub             && if echo "$KEY_SHA512 */tmp/nginx_signing.rsa.pub" | sha512sum -c -; then                 echo "key verification succeeded!";                 mv /tmp/nginx_signing.rsa.pub /etc/apk/keys/;             else                 echo "key verification failed!";                 exit 1;             fi             && apk add -X "https://nginx.org/packages/mainline/alpine/v$(egrep -o '^[0-9]+\.[0-9]+' /etc/alpine-release)/main" --no-cache $nginxPackages             ;;         *)             set -x             && tempDir="$(mktemp -d)"             && chown nobody:nobody $tempDir             && apk add --no-cache --virtual .build-deps                 gcc                 libc-dev                 make                 openssl-dev                 pcre2-dev                 zlib-dev                 linux-headers                 bash                 alpine-sdk                 findutils                 curl             && su nobody -s /bin/sh -c "                 export HOME=${tempDir}                 && cd ${tempDir}                 && curl -f -L -O https://github.com/nginx/pkg-oss/archive/${NGINX_VERSION}-${PKG_RELEASE}.tar.gz                 && PKGOSSCHECKSUM=\"400593da45fc0195a01138c0c23a06059da1c6a2e26959f2c4c95fbaf63436ff211665ef01392d2b775a0133d5b57680dabe51b840a55f82e89621e84cf651d1 *${NGINX_VERSION}-${PKG_RELEASE}.tar.gz\"                 && if [ \"\$(openssl sha512 -r ${NGINX_VERSION}-${PKG_RELEASE}.tar.gz)\" = \"\$PKGOSSCHECKSUM\" ]; then                     echo \"pkg-oss tarball checksum verification succeeded!\";                 else                     echo \"pkg-oss tarball checksum verification failed!\";                     exit 1;                 fi                 && tar xzvf ${NGINX_VERSION}-${PKG_RELEASE}.tar.gz                 && cd pkg-oss-${NGINX_VERSION}-${PKG_RELEASE}                 && cd alpine                 && make base                 && apk index --allow-untrusted -o ${tempDir}/packages/alpine/${apkArch}/APKINDEX.tar.gz ${tempDir}/packages/alpine/${apkArch}/*.apk                 && abuild-sign -k ${tempDir}/.abuild/abuild-key.rsa ${tempDir}/packages/alpine/${apkArch}/APKINDEX.tar.gz                 "             && cp ${tempDir}/.abuild/abuild-key.rsa.pub /etc/apk/keys/             && apk del --no-network .build-deps             && apk add -X ${tempDir}/packages/alpine/ --no-cache $nginxPackages             ;;     esac     && apk del --no-network .checksum-deps     && if [ -n "$tempDir" ]; then rm -rf "$tempDir"; fi     && if [ -f "/etc/apk/keys/abuild-key.rsa.pub" ]; then rm -f /etc/apk/keys/abuild-key.rsa.pub; fi     && apk add --no-cache gettext-envsubst     && apk add --no-cache tzdata     && ln -sf /dev/stdout /var/log/nginx/access.log     && ln -sf /dev/stderr /var/log/nginx/error.log     && mkdir /docker-entrypoint.d # buildkit
                        
# 2025-08-18 08:27:53  0.00B 定义构建参数
ARG GID=101
                        
# 2025-08-18 08:27:53  0.00B 定义构建参数
ARG UID=101
                        
# 2025-08-18 08:27:53  0.00B 设置环境变量 DYNPKG_RELEASE
ENV DYNPKG_RELEASE=1
                        
# 2025-08-18 08:27:53  0.00B 设置环境变量 PKG_RELEASE
ENV PKG_RELEASE=1
                        
# 2025-08-18 08:27:53  0.00B 设置环境变量 NGINX_VERSION
ENV NGINX_VERSION=1.29.0
                        
# 2025-08-18 08:27:53  0.00B 添加元数据标签
LABEL maintainer=NGINX Docker Maintainers <docker-maint@nginx.com>
                        
# 2025-07-15 19:01:16  0.00B 设置默认要执行的命令
CMD ["/bin/sh"]
                        
# 2025-07-15 19:01:16  8.31MB 复制文件或目录到容器中
ADD alpine-minirootfs-3.22.1-x86_64.tar.gz / # buildkit
                        
                    

镜像信息

{
    "Id": "sha256:f3f4a72c9b09d7c7a59238cebd437c1aeb3ae00d61fa84d4e8bc4f105bed6ccc",
    "RepoTags": [
        "nginxinc/nginx-unprivileged:1.29.0-alpine3.22-otel",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/nginxinc/nginx-unprivileged:1.29.0-alpine3.22-otel"
    ],
    "RepoDigests": [
        "nginxinc/nginx-unprivileged@sha256:5a41b6424e817a6c97c057e4be7fb8fdc19ec95845c784487dee1fa795ef4d03",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/nginxinc/nginx-unprivileged@sha256:5b355bf1ce88fc40340c7f1fc355fd0122a38f57adb7c97c1c30c234bc23d8ce"
    ],
    "Parent": "",
    "Comment": "buildkit.dockerfile.v0",
    "Created": "2025-08-18T04:02:11.882209986Z",
    "Container": "",
    "ContainerConfig": null,
    "DockerVersion": "",
    "Author": "",
    "Config": {
        "Hostname": "",
        "Domainname": "",
        "User": "101",
        "AttachStdin": false,
        "AttachStdout": false,
        "AttachStderr": false,
        "ExposedPorts": {
            "8080/tcp": {}
        },
        "Tty": false,
        "OpenStdin": false,
        "StdinOnce": false,
        "Env": [
            "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin",
            "NGINX_VERSION=1.29.0",
            "PKG_RELEASE=1",
            "DYNPKG_RELEASE=1",
            "NJS_VERSION=0.9.0",
            "NJS_RELEASE=1",
            "OTEL_VERSION=0.1.2"
        ],
        "Cmd": [
            "nginx",
            "-g",
            "daemon off;"
        ],
        "ArgsEscaped": true,
        "Image": "",
        "Volumes": null,
        "WorkingDir": "/",
        "Entrypoint": [
            "/docker-entrypoint.sh"
        ],
        "OnBuild": null,
        "Labels": {
            "maintainer": "NGINX Docker Maintainers \u003cdocker-maint@nginx.com\u003e",
            "org.opencontainers.image.created": "2025-08-18T04:02:03.436Z",
            "org.opencontainers.image.description": "Unprivileged NGINX Dockerfiles",
            "org.opencontainers.image.licenses": "Apache-2.0",
            "org.opencontainers.image.revision": "a773d561b235f57f1c2417dbdef42348631ab0e6",
            "org.opencontainers.image.source": "https://github.com/nginx/docker-nginx-unprivileged",
            "org.opencontainers.image.title": "docker-nginx-unprivileged",
            "org.opencontainers.image.url": "https://github.com/nginx/docker-nginx-unprivileged",
            "org.opencontainers.image.version": "1.29.0-alpine-otel"
        },
        "StopSignal": "SIGQUIT"
    },
    "Architecture": "amd64",
    "Os": "linux",
    "Size": 88066844,
    "GraphDriver": {
        "Data": {
            "LowerDir": "/var/lib/docker/overlay2/d7defd56ea504f8aea8f564c60fad97557f927b7b2d94751daab8325331bffb0/diff:/var/lib/docker/overlay2/298ca9059730597dfe5f7eecff8c23075ff6f5b57dcc1b9f2b282d68bac6f205/diff:/var/lib/docker/overlay2/6bc4132ad0bfe25d15d02c577d6c1011794cdc0c6d7fc578ab8628af1909227b/diff:/var/lib/docker/overlay2/4c11cc894845c838b0d7179640365ecd563e96815d9389f70791e0abc0e6c343/diff:/var/lib/docker/overlay2/a59531d0eb5d505af50d7de6c0203b3656152fc511888b59b22ecf07b7487fd5/diff:/var/lib/docker/overlay2/b162026f5ba5cd1ee95ab8ec51314c85272076e80fe6478d8a69a66f9011e684/diff:/var/lib/docker/overlay2/8aca7ed6dcf9a3b5d1d6f570bc4ea970414f4997a9283aa4209c4137babf1b64/diff:/var/lib/docker/overlay2/3f0c1965f972b0273b750c19f393d3425d11af0c6373c9719bea7b4c0166c9f2/diff:/var/lib/docker/overlay2/fce31083bf78fb669ced5e473ada166388fb6191ae6144c91b94c9a1629510cc/diff",
            "MergedDir": "/var/lib/docker/overlay2/ec8c5882da6503caeb91ec70b68fd2f4cb5e1a25eb26d8cdc3d0c8b9e5efa700/merged",
            "UpperDir": "/var/lib/docker/overlay2/ec8c5882da6503caeb91ec70b68fd2f4cb5e1a25eb26d8cdc3d0c8b9e5efa700/diff",
            "WorkDir": "/var/lib/docker/overlay2/ec8c5882da6503caeb91ec70b68fd2f4cb5e1a25eb26d8cdc3d0c8b9e5efa700/work"
        },
        "Name": "overlay2"
    },
    "RootFS": {
        "Type": "layers",
        "Layers": [
            "sha256:418dccb7d85a63a6aa574439840f7a6fa6fd2321b3e2394568a317735e867d35",
            "sha256:b83aba795af9a7c90c05e33eefc69a9f0fefdb5c41941a704427b593344c94bd",
            "sha256:bb474b3415d83e8a20a33b51e28de1c5a04a283b8b4cdfff35acf2f8271784c5",
            "sha256:ac3801454119bfc5357b50ccfb43987bfb4c00fb7a64f348fb1d5d0b03fbc85b",
            "sha256:d9c16f98e3fb55dcb9c1bad113f41333fe5b6fed5376364e9f62229e1eea4159",
            "sha256:926b2865c5b757b00a46d4c072add747104309081823691a15fc03f122208338",
            "sha256:88bc62d54ac06ae8ce84d254ac168ad0289d4d8bbba1f995dbfc06fda033774a",
            "sha256:c0f1a911bccc1fc0802f08987eaf57723da1a0ef81a887347ca47adb01d35ded",
            "sha256:705c6ce4493a1ffba62108fd4796e21da632cfae4a154d7d8dae8e572b7df980",
            "sha256:67ebd00b25c64120ce0aa01cd367315f33cd4a1c587023365a7a00b4cfd66320"
        ]
    },
    "Metadata": {
        "LastTagTime": "2026-01-23T16:00:05.168312519+08:00"
    }
}

更多版本

docker.io/nginxinc/nginx-unprivileged:1.27-alpine

linux/amd64 docker.io47.02MB2024-10-18 22:04
2325

docker.io/nginxinc/nginx-unprivileged:1.25-alpine

linux/amd64 docker.io48.32MB2024-10-22 17:25
900

docker.io/nginxinc/nginx-unprivileged:1.26-alpine

linux/amd64 docker.io48.78MB2024-12-25 01:01
682

docker.io/nginxinc/nginx-unprivileged:perl

linux/amd64 docker.io239.78MB2024-12-30 23:51
2596

docker.io/nginxinc/nginx-unprivileged:1.19-alpine

linux/amd64 docker.io22.62MB2025-03-13 16:34
580

docker.io/nginxinc/nginx-unprivileged:1.24-alpine

linux/amd64 docker.io47.34MB2025-03-14 11:37
906

docker.io/nginxinc/nginx-unprivileged:1.27.3-alpine

linux/amd64 docker.io47.13MB2025-03-14 13:47
839

docker.io/nginxinc/nginx-unprivileged:1.23.1-alpine

linux/amd64 docker.io23.51MB2025-05-06 15:58
488

docker.io/nginxinc/nginx-unprivileged:1.28-alpine

linux/amd64 docker.io48.25MB2025-06-09 17:05
981

docker.io/nginxinc/nginx-unprivileged:1.29-alpine

linux/amd64 docker.io52.46MB2025-07-22 13:29
688

docker.io/nginxinc/nginx-unprivileged:1.29.0-alpine3.22

linux/amd64 docker.io52.46MB2025-08-11 01:01
708

docker.io/nginxinc/nginx-unprivileged:1.27.5

linux/arm64 docker.io197.80MB2025-09-05 09:35
346

docker.io/nginxinc/nginx-unprivileged:1.29-alpine

linux/arm64 docker.io58.78MB2025-09-16 15:28
471

docker.io/nginxinc/nginx-unprivileged:1.29.2-alpine3.22-slim

linux/amd64 docker.io12.54MB2026-01-04 11:09
108

docker.io/nginxinc/nginx-unprivileged:1.29.0-alpine3.22-otel

linux/amd64 docker.io88.07MB2026-01-23 16:00
17