logo
docker.io/nginx:stable-otel
linux/amd64 docker.io
nginx镜像用于运行Nginx Web 服务器。
128
浏览次数
169.76MB
镜像大小
国内镜像
swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/nginx:stable-otel
源镜像
docker.io/nginx:stable-otel
镜像ID
sha256:0a3196681796f2a74c364ccf929e993549acdfb6d8ef2f82ba35f46c345c9969
镜像 TAG
stable-otel
镜像大小
169.76MB
平台架构
linux/amd64
镜像源
docker.io
CMD
nginx -g daemon off;
启动入口
/docker-entrypoint.sh
工作目录
OS/平台
linux/amd64
镜像创建
2026-07-14T02:27:23.82302691Z
同步时间
2026-07-15 15:14
浏览量
128 次
贡献者
🔌 开放端口 1
80/tcp
⚙️ 环境变量 8
KeyValue
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin 0
NGINX_VERSION=1.30.3 1
NJS_VERSION=0.9.9 2
NJS_RELEASE=1~trixie 3
ACME_VERSION=0.4.1 4
PKG_RELEASE=1~trixie 5
DYNPKG_RELEASE=1~trixie 6
OTEL_VERSION=0.1.2 7
🏷️ 镜像标签 1
KeyValue
NGINX Docker Maintainers <docker-maint@nginx.com> maintainer
🛡️ 镜像安全扫描
debian 13.6 Trivy 2026-07-15 15:14 查看完整报告
121
低危 LOW
117
中危 MEDIUM
62
高危 HIGH
2
严重 CRITICAL
受影响目标 (1)
docker.io/nginx:stable-otel (debian 13.6) debian

Docker拉取命令

docker pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/nginx:stable-otel
docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/nginx:stable-otel  docker.io/nginx:stable-otel

Containerd拉取命令

ctr images pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/nginx:stable-otel
ctr images tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/nginx:stable-otel  docker.io/nginx:stable-otel

Shell快速替换命令

sed -i 's#nginx:stable-otel#swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/nginx:stable-otel#' deployment.yaml

Ansible快速分发-Docker

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

Ansible快速分发-Containerd

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

镜像构建历史


# 2026-07-14 10:27:23  8.50MB 执行命令并创建新的镜像层
RUN /bin/sh -c set -x;     NGINX_GPGKEY_PATH=/etc/apt/keyrings/nginx-archive-keyring.gpg;     dpkgArch="$(dpkg --print-architecture)"     && nginxPackages="         nginx=${NGINX_VERSION}-${PKG_RELEASE}         nginx-module-xslt=${NGINX_VERSION}-${DYNPKG_RELEASE}         nginx-module-geoip=${NGINX_VERSION}-${DYNPKG_RELEASE}         nginx-module-image-filter=${NGINX_VERSION}-${DYNPKG_RELEASE}         nginx-module-njs=${NGINX_VERSION}+${NJS_VERSION}-${NJS_RELEASE}         nginx-module-acme=${NGINX_VERSION}+${ACME_VERSION}-${PKG_RELEASE}         nginx-module-otel=${NGINX_VERSION}+${OTEL_VERSION}-${PKG_RELEASE}     "     && case "$dpkgArch" in         amd64|arm64)             echo "deb [signed-by=$NGINX_GPGKEY_PATH] https://nginx.org/packages/debian/ trixie nginx" >> /etc/apt/sources.list.d/nginx.list             && apt-get update             ;;         *)             tempDir="$(mktemp -d)"             && chmod 777 "$tempDir"                         && savedAptMark="$(apt-mark showmanual)"                         && apt-get update             && apt-get install --no-install-recommends --no-install-suggests -y                 curl                 devscripts                 equivs                 git                 libxml2-utils                 lsb-release                 xsltproc             && (                 cd "$tempDir"                 && REVISION="${NGINX_VERSION}-${PKG_RELEASE}"                 && REVISION=${REVISION%~*}                 && curl -f -L -O https://github.com/nginx/pkg-oss/archive/${REVISION}.tar.gz                 && PKGOSSCHECKSUM="e602521342632b9cd61ff29049864eb5e233dea98918f1a4d842c4fb8304af1f916a9630e9cd00236366f713a011ed6b05e068ebcc136d3d820af0c31f932a71 *${REVISION}.tar.gz"                 && if [ "$(openssl sha512 -r ${REVISION}.tar.gz)" = "$PKGOSSCHECKSUM" ]; then                     echo "pkg-oss tarball checksum verification succeeded!";                 else                     echo "pkg-oss tarball checksum verification failed!";                     exit 1;                 fi                 && tar xzvf ${REVISION}.tar.gz                 && cd pkg-oss-${REVISION}                 && cd debian                 && for target in module-otel; do                     make rules-$target;                     mk-build-deps --install --tool="apt-get -o Debug::pkgProblemResolver=yes --no-install-recommends --yes"                         debuild-$target/nginx-$NGINX_VERSION/debian/control;                 done                 && make module-otel             )                         && 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 # buildkit
                        
# 2026-07-14 10:27:23  0.00B 设置环境变量 OTEL_VERSION
ENV OTEL_VERSION=0.1.2
                        
# 2026-07-14 09:22:44  0.00B 设置默认要执行的命令
CMD ["nginx" "-g" "daemon off;"]
                        
# 2026-07-14 09:22:44  0.00B 设置停止容器时发送的系统调用信号
STOPSIGNAL SIGQUIT
                        
# 2026-07-14 09:22:44  0.00B 声明容器运行时监听的端口
EXPOSE map[80/tcp:{}]
                        
# 2026-07-14 09:22:44  0.00B 配置容器启动时运行的命令
ENTRYPOINT ["/docker-entrypoint.sh"]
                        
# 2026-07-14 09:22:44  4.62KB 复制新文件或目录到容器中
COPY 30-tune-worker-processes.sh /docker-entrypoint.d # buildkit
                        
# 2026-07-14 09:22:44  3.03KB 复制新文件或目录到容器中
COPY 20-envsubst-on-templates.sh /docker-entrypoint.d # buildkit
                        
# 2026-07-14 09:22:44  389.00B 复制新文件或目录到容器中
COPY 15-local-resolvers.envsh /docker-entrypoint.d # buildkit
                        
# 2026-07-14 09:22:44  2.12KB 复制新文件或目录到容器中
COPY 10-listen-on-ipv6-by-default.sh /docker-entrypoint.d # buildkit
                        
# 2026-07-14 09:22:44  1.62KB 复制新文件或目录到容器中
COPY docker-entrypoint.sh / # buildkit
                        
# 2026-07-14 09:22:44  82.62MB 执行命令并创建新的镜像层
RUN /bin/sh -c set -x     && groupadd --system --gid 101 nginx     && useradd --system --gid nginx --no-create-home --home /nonexistent --comment "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_GPGKEYS="573BFD6B3D8FBC641079A6ABABF5BD827BD9BF62 8540A6F18833A80E9C1653A42FD21310B49F6B46 9E9BE90EACBCDE69FE9B204CBCDCD8A38D88A2B3";     NGINX_GPGKEY_PATH=/etc/apt/keyrings/nginx-archive-keyring.gpg;     export GNUPGHOME="$(mktemp -d)";     found='';     for NGINX_GPGKEY in $NGINX_GPGKEYS; do     for server in         hkp://keyserver.ubuntu.com:80         pgp.mit.edu     ; do         echo "Fetching GPG key $NGINX_GPGKEY from $server";         gpg1 --batch --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;     done;     gpg1 --batch --export $NGINX_GPGKEYS > "$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}-${DYNPKG_RELEASE}         nginx-module-geoip=${NGINX_VERSION}-${DYNPKG_RELEASE}         nginx-module-image-filter=${NGINX_VERSION}-${DYNPKG_RELEASE}         nginx-module-njs=${NGINX_VERSION}+${NJS_VERSION}-${NJS_RELEASE}         nginx-module-acme=${NGINX_VERSION}+${ACME_VERSION}-${PKG_RELEASE}     "     && case "$dpkgArch" in         amd64|arm64)             echo "deb [signed-by=$NGINX_GPGKEY_PATH] https://nginx.org/packages/debian/ trixie nginx" >> /etc/apt/sources.list.d/nginx.list             && apt-get update             ;;         *)             tempDir="$(mktemp -d)"             && chmod 777 "$tempDir"                         && savedAptMark="$(apt-mark showmanual)"                         && apt-get update             && apt-get install --no-install-recommends --no-install-suggests -y                 cargo                 curl                 devscripts                 equivs                 git                 libxml2-utils                 lsb-release                 xsltproc             && (                 cd "$tempDir"                 && export CARGO_HOME="$tempDir/.cargo"                 && REVISION="${NGINX_VERSION}-${PKG_RELEASE}"                 && REVISION=${REVISION%~*}                 && curl -f -L -O https://github.com/nginx/pkg-oss/archive/${REVISION}.tar.gz                 && PKGOSSCHECKSUM="e602521342632b9cd61ff29049864eb5e233dea98918f1a4d842c4fb8304af1f916a9630e9cd00236366f713a011ed6b05e068ebcc136d3d820af0c31f932a71 *${REVISION}.tar.gz"                 && if [ "$(openssl sha512 -r ${REVISION}.tar.gz)" = "$PKGOSSCHECKSUM" ]; then                     echo "pkg-oss tarball checksum verification succeeded!";                 else                     echo "pkg-oss tarball checksum verification failed!";                     exit 1;                 fi                 && tar xzvf ${REVISION}.tar.gz                 && cd pkg-oss-${REVISION}                 && cd debian                 && for target in base module-geoip module-image-filter module-njs module-xslt module-acme; do                     make rules-$target;                     mk-build-deps --install --tool="apt-get -o Debug::pkgProblemResolver=yes --no-install-recommends --yes"                         debuild-$target/nginx-$NGINX_VERSION/debian/control;                 done                 && make base module-geoip module-image-filter module-njs module-xslt module-acme             )                         && 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 # buildkit
                        
# 2026-07-14 09:22:44  0.00B 设置环境变量 DYNPKG_RELEASE
ENV DYNPKG_RELEASE=1~trixie
                        
# 2026-07-14 09:22:44  0.00B 设置环境变量 PKG_RELEASE
ENV PKG_RELEASE=1~trixie
                        
# 2026-07-14 09:22:44  0.00B 设置环境变量 ACME_VERSION
ENV ACME_VERSION=0.4.1
                        
# 2026-07-14 09:22:44  0.00B 设置环境变量 NJS_RELEASE
ENV NJS_RELEASE=1~trixie
                        
# 2026-07-14 09:22:44  0.00B 设置环境变量 NJS_VERSION
ENV NJS_VERSION=0.9.9
                        
# 2026-07-14 09:22:44  0.00B 设置环境变量 NGINX_VERSION
ENV NGINX_VERSION=1.30.3
                        
# 2026-07-14 09:22:44  0.00B 添加元数据标签
LABEL maintainer=NGINX Docker Maintainers <docker-maint@nginx.com>
                        
# 2026-07-13 08:00:00  78.62MB 
# debian.sh --arch 'amd64' out/ 'trixie' '@1783900800'
                        
                    

镜像信息

{
    "Id": "sha256:0a3196681796f2a74c364ccf929e993549acdfb6d8ef2f82ba35f46c345c9969",
    "RepoTags": [
        "nginx:stable-otel",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/nginx:stable-otel"
    ],
    "RepoDigests": [
        "nginx@sha256:fc1d9b488e585484502c0915cd35ad05e4f33405a7cf145b0badfac2067a7ff0",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/nginx@sha256:148d91e25325990364a9d9092fd38deb1b89346b6a6cb6a4d01ac8ef33fd69fd"
    ],
    "Parent": "",
    "Comment": "buildkit.dockerfile.v0",
    "Created": "2026-07-14T02:27:23.82302691Z",
    "Container": "",
    "ContainerConfig": null,
    "DockerVersion": "",
    "Author": "",
    "Config": {
        "Hostname": "",
        "Domainname": "",
        "User": "",
        "AttachStdin": false,
        "AttachStdout": false,
        "AttachStderr": false,
        "ExposedPorts": {
            "80/tcp": {}
        },
        "Tty": false,
        "OpenStdin": false,
        "StdinOnce": false,
        "Env": [
            "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin",
            "NGINX_VERSION=1.30.3",
            "NJS_VERSION=0.9.9",
            "NJS_RELEASE=1~trixie",
            "ACME_VERSION=0.4.1",
            "PKG_RELEASE=1~trixie",
            "DYNPKG_RELEASE=1~trixie",
            "OTEL_VERSION=0.1.2"
        ],
        "Cmd": [
            "nginx",
            "-g",
            "daemon off;"
        ],
        "Image": "",
        "Volumes": null,
        "WorkingDir": "",
        "Entrypoint": [
            "/docker-entrypoint.sh"
        ],
        "OnBuild": null,
        "Labels": {
            "maintainer": "NGINX Docker Maintainers \u003cdocker-maint@nginx.com\u003e"
        },
        "StopSignal": "SIGQUIT"
    },
    "Architecture": "amd64",
    "Os": "linux",
    "Size": 169758709,
    "GraphDriver": {
        "Data": {
            "LowerDir": "/var/lib/docker/overlay2/35dab3abf10e15e83bdb54720cb50bccbb7260f102ea711b609d652de92caf09/diff:/var/lib/docker/overlay2/f16d286f89afa17ef76c068aaef8ed64021cf813b7937a80607bf89e1094885c/diff:/var/lib/docker/overlay2/b5a51eddf0d2ad9848c79627c068ebe136cc37b3dae698bb3e8a8e1f1207a2fc/diff:/var/lib/docker/overlay2/26cc2f5814ce223214400e937f84ef9ea0f244daddc9ec8024a21d0f7a7946c5/diff:/var/lib/docker/overlay2/d0342f939263df0c29eabb5607e026d6c6b75498cd5de028a0aa5ea9c42158fb/diff:/var/lib/docker/overlay2/7d0b6f8ab530759e651ec0de7d747fe479c422f767c4fd4ba05148324e0d7319/diff:/var/lib/docker/overlay2/f24ade665d94e6f8ff29f06c32243f0eb4e1ac8da4feddb1b4ad6020791e6a90/diff",
            "MergedDir": "/var/lib/docker/overlay2/42347d0a86d2533597d6067ea61bcebd332615c385b2557a84d96039d9bc3b76/merged",
            "UpperDir": "/var/lib/docker/overlay2/42347d0a86d2533597d6067ea61bcebd332615c385b2557a84d96039d9bc3b76/diff",
            "WorkDir": "/var/lib/docker/overlay2/42347d0a86d2533597d6067ea61bcebd332615c385b2557a84d96039d9bc3b76/work"
        },
        "Name": "overlay2"
    },
    "RootFS": {
        "Type": "layers",
        "Layers": [
            "sha256:f2ec4de84f559f5c7be4233b589cdbdbb5507807e05621b77320edd55a1f2a0f",
            "sha256:e98380c5ebb0f6130b109f95a2c5fdeec51ed319842aabcd18637ddecebef0ba",
            "sha256:5ee1c5fbf6621232fa04ade899406d88fc0b1400f155c79f705496c25054708a",
            "sha256:2de9575ebd4c31df262c67c45f18533b1c43be5f972b605f5c20a62f4c5b240b",
            "sha256:6dc38ad96739f826b43833771fcf0a33a49875272ec2556db9eb573c59fdcf1b",
            "sha256:7a3b7532eedfc718a8f9ccda29f21bf57bb46becf50d3044d3c49f1aebca5745",
            "sha256:b1d9cfacfacdeea32e4e226771e672bf14f577697d944888e8ab750e72f78440",
            "sha256:bdf295cec7e80e493b22e0d63cd53b718a07848a59ccf3f59734e9899139ec5a"
        ]
    },
    "Metadata": {
        "LastTagTime": "2026-07-15T15:14:07.290883793+08:00"
    }
}

更多版本

docker.io/nginx:1.13.0

linux/amd64 docker.io109.39MB2024-10-29 14:03
876

docker.io/nginx:1.13.7

linux/amd64 docker.io108.49MB2026-01-22 19:22
327

docker.io/nginx:1.13.7-alpine

linux/amd64 docker.io15.53MB2026-05-25 10:48
219

docker.io/nginx:1.14.1

linux/amd64 docker.io109.08MB2024-09-24 00:17
1223

docker.io/nginx:1.14.2

linux/amd64 docker.io109.13MB2025-02-13 09:08
919

docker.io/nginx:1.14.2

linux/arm64 docker.io102.76MB2025-02-13 09:11
593

docker.io/nginx:1.14.2-alpine

linux/amd64 docker.io16.03MB2026-05-25 10:57
243

docker.io/nginx:1.15-alpine

linux/amd64 docker.io16.09MB2026-06-10 12:46
452

docker.io/nginx:1.15.1-alpine

linux/amd64 docker.io18.64MB2025-06-23 13:53
547

docker.io/nginx:1.15.2-alpine

linux/amd64 docker.io18.64MB2025-09-17 19:52
474

docker.io/nginx:1.16

linux/arm64 docker.io120.09MB2024-08-15 14:56
2009

docker.io/nginx:1.17.1

linux/amd64 docker.io109.36MB2024-11-18 16:01
844

docker.io/nginx:1.17.2

linux/amd64 docker.io125.85MB2024-11-20 17:53
686

docker.io/nginx:1.17.3

linux/amd64 docker.io125.98MB2024-11-20 17:56
613

docker.io/nginx:1.17.4

linux/amd64 docker.io125.99MB2024-11-20 18:15
674

docker.io/nginx:1.18.0

linux/amd64 docker.io132.90MB2024-06-29 17:58
1783

docker.io/nginx:1.19-alpine

linux/amd64 docker.io22.60MB2025-03-08 09:07
787

docker.io/nginx:1.19.0-alpine

linux/amd64 docker.io21.25MB2025-05-21 15:30
556

docker.io/nginx:1.19.10-alpine

linux/arm64 docker.io21.25MB2026-09-01 15:06
44

docker.io/nginx:1.19.2-alpine

linux/amd64 docker.io22.05MB2024-12-19 10:16
736

docker.io/nginx:1.19.6

linux/amd64 docker.io132.97MB2025-09-06 11:11
460

docker.io/nginx:1.19.6

linux/arm64 docker.io125.65MB2025-09-27 21:36
335

docker.io/nginx:1.19.7-alpine

linux/amd64 docker.io22.55MB2024-11-25 11:51
874

docker.io/nginx:1.20

linux/amd64 docker.io141.50MB2025-09-10 15:41
339

docker.io/nginx:1.20.0

linux/amd64 docker.io133.11MB2025-09-10 15:33
393

docker.io/nginx:1.20.1

linux/amd64 docker.io133.11MB2026-01-29 14:09
427

docker.io/nginx:1.20.1

linux/arm64 docker.io125.79MB2026-03-07 10:53
195

docker.io/nginx:1.20.2

linux/amd64 docker.io141.50MB2024-09-14 16:48
2138

docker.io/nginx:1.20.2-alpine

linux/amd64 docker.io23.16MB2024-07-28 09:09
1324

docker.io/nginx:1.21

linux/amd64 docker.io141.53MB2024-07-11 14:19
3927

docker.io/nginx:1.21-alpine

linux/arm64 docker.io22.01MB2026-09-01 11:39
36

docker.io/nginx:1.21.0

linux/amd64 docker.io133.12MB2025-09-10 15:35
295

docker.io/nginx:1.21.1

linux/amd64 docker.io133.18MB2026-01-27 10:57
345

docker.io/nginx:1.21.1-alpine

linux/amd64 docker.io22.85MB2026-02-25 17:33
309

docker.io/nginx:1.21.4-alpine

linux/amd64 docker.io23.20MB2024-10-21 17:39
972

docker.io/nginx:1.21.5

linux/amd64 docker.io141.48MB2025-12-04 15:33
346

docker.io/nginx:1.21.5-alpine

linux/arm64 docker.io22.06MB2026-06-01 15:44
136

docker.io/nginx:1.21.6

linux/amd64 docker.io141.53MB2024-11-22 15:08
1549

docker.io/nginx:1.21.6

linux/arm64 docker.io134.47MB2026-04-17 17:27
192

docker.io/nginx:1.22

linux/amd64 docker.io142.11MB2025-05-17 22:17
782

docker.io/nginx:1.22.0

linux/amd64 docker.io141.67MB2025-09-10 15:37
407

docker.io/nginx:1.22.0

linux/arm64 docker.io134.49MB2026-08-17 18:47
64

docker.io/nginx:1.22.1

linux/amd64 docker.io142.11MB2025-10-27 18:40
1043

docker.io/nginx:1.22.1-alpine

linux/amd64 docker.io40.98MB2024-09-02 10:33
1977

docker.io/nginx:1.22.1-alpine3.17-slim

linux/amd64 docker.io11.49MB2025-01-08 09:37
915

docker.io/nginx:1.23

linux/amd64 docker.io142.15MB2025-02-20 08:32
825

docker.io/nginx:1.23-alpine

linux/amd64 docker.io41.00MB2025-09-29 16:21
385

docker.io/nginx:1.23.0

linux/amd64 docker.io141.51MB2025-09-10 15:39
400

docker.io/nginx:1.23.1

linux/amd64 docker.io141.68MB2026-02-12 17:06
314

docker.io/nginx:1.23.2

linux/amd64 docker.io141.77MB2024-09-29 17:58
1418

docker.io/nginx:1.23.2

linux/arm docker.io109.21MB2024-09-29 18:09
927

docker.io/nginx:1.23.3-alpine

linux/amd64 docker.io40.72MB2025-08-08 15:24
657

docker.io/nginx:1.24.0

linux/amd64 docker.io142.31MB2024-10-25 09:58
2192

docker.io/nginx:1.24.0

linux/arm64 docker.io135.14MB2024-10-24 17:53
2214

docker.io/nginx:1.25-alpine

linux/amd64 docker.io48.30MB2025-03-26 18:26
2513

docker.io/nginx:1.25-alpine

linux/arm64 docker.io49.70MB2025-05-22 11:31
727

docker.io/nginx:1.25-bullseye

linux/amd64 docker.io142.58MB2025-10-24 11:45
314

docker.io/nginx:1.25.0

linux/amd64 docker.io142.58MB2025-09-10 14:24
372

docker.io/nginx:1.25.1

linux/amd64 docker.io186.86MB2024-12-23 09:23
918

docker.io/nginx:1.25.1-alpine3.17-slim

linux/amd64 docker.io11.81MB2026-05-19 09:43
205

docker.io/nginx:1.25.1-bookworm

linux/amd64 docker.io186.86MB2025-03-21 15:06
736

docker.io/nginx:1.25.2

linux/arm64 docker.io192.07MB2024-12-20 16:50
854

docker.io/nginx:1.25.2-alpine

linux/amd64 docker.io42.60MB2024-08-12 08:27
2494

docker.io/nginx:1.25.2-alpine

linux/arm64 docker.io43.49MB2025-03-19 11:58
841

docker.io/nginx:1.25.3

linux/arm64 docker.io192.02MB2025-10-31 15:10
437

docker.io/nginx:1.25.4-alpine

linux/amd64 docker.io42.58MB2025-12-03 10:34
335

docker.io/nginx:1.25.4-alpine3.18

linux/amd64 docker.io42.58MB2025-02-12 15:05
1127

docker.io/nginx:1.25.5

linux/amd64 docker.io187.66MB2024-08-27 14:32
1668

docker.io/nginx:1.25.5-bookworm-perl

linux/amd64 docker.io235.67MB2024-06-28 01:33
1367

docker.io/nginx:1.26

linux/amd64 docker.io187.70MB2024-11-22 11:29
708

docker.io/nginx:1.26

linux/arm64 docker.io193.07MB2024-11-22 11:31
699

docker.io/nginx:1.26.0

linux/amd64 docker.io187.66MB2024-12-29 11:11
832

docker.io/nginx:1.26.1

linux/amd64 docker.io187.60MB2024-08-27 14:31
1578

docker.io/nginx:1.26.1

linux/arm docker.io135.58MB2024-09-29 18:04
1011

docker.io/nginx:1.26.1

linux/arm64 docker.io193.00MB2024-09-29 18:07
775

docker.io/nginx:1.26.1-alpine

linux/amd64 docker.io48.31MB2024-06-19 15:44
4681

docker.io/nginx:1.26.1-alpine

linux/arm64 docker.io44.84MB2024-07-19 15:23
1543

docker.io/nginx:1.26.1-alpine-slim

linux/amd64 docker.io12.01MB2024-07-16 16:21
2444

docker.io/nginx:1.26.2

linux/amd64 docker.io187.69MB2024-08-27 14:29
2533

docker.io/nginx:1.26.2

linux/arm64 docker.io193.07MB2024-11-22 11:59
1066

docker.io/nginx:1.26.2-alpine

linux/amd64 docker.io43.26MB2024-09-02 10:34
1075

docker.io/nginx:1.26.3

linux/amd64 docker.io191.91MB2025-02-19 14:19
1268

docker.io/nginx:1.26.3

linux/arm64 docker.io197.15MB2025-03-13 15:16
927

docker.io/nginx:1.26.3-alpine

linux/amd64 docker.io47.21MB2025-03-26 15:26
1096

docker.io/nginx:1.26.3-alpine

linux/arm64 docker.io51.05MB2025-04-07 16:26
701

docker.io/nginx:1.26.3-bookworm

linux/amd64 docker.io191.91MB2025-02-10 11:39
928

docker.io/nginx:1.27

linux/amd64 docker.io187.64MB2024-06-14 16:00
2047

docker.io/nginx:1.27-alpine

linux/amd64 docker.io43.24MB2024-09-26 17:25
3154

docker.io/nginx:1.27-alpine

linux/arm64 docker.io49.71MB2026-09-11 11:15
37

docker.io/nginx:1.27-alpine-perl

linux/amd64 docker.io80.79MB2024-09-09 19:18
888

docker.io/nginx:1.27.0

linux/amd64 docker.io187.64MB2024-06-14 16:05
17231

docker.io/nginx:1.27.0

linux/arm64 docker.io193.00MB2025-01-07 16:50
674

docker.io/nginx:1.27.1

linux/amd64 docker.io187.69MB2024-08-27 14:47
1593

docker.io/nginx:1.27.1

linux/arm64 docker.io193.07MB2025-05-13 15:28
575

docker.io/nginx:1.27.1-alpine

linux/amd64 docker.io43.24MB2024-09-13 16:27
1114

docker.io/nginx:1.27.2

linux/amd64 docker.io191.67MB2025-09-10 15:29
350

docker.io/nginx:1.27.2

linux/arm64 docker.io196.88MB2024-10-31 11:38
1378

docker.io/nginx:1.27.2-alpine

linux/arm64 docker.io50.84MB2024-10-31 11:33
2181

docker.io/nginx:1.27.2-alpine-slim

linux/amd64 docker.io11.79MB2024-10-30 17:48
1412

docker.io/nginx:1.27.2-perl

linux/amd64 docker.io239.68MB2024-11-04 11:39
856
检测到您正在使用广告拦截插件,本站为公益站点,依赖广告维持运转 🙏 查看如何关闭 ×