docker.io/mips64le/nginx:1.25.5-perl linux/mips64le

docker.io/mips64le/nginx:1.25.5-perl - 国内下载镜像源 浏览次数:9 温馨提示: 这是一个 linux/mips64le 系统架构镜像
源镜像 docker.io/mips64le/nginx:1.25.5-perl
国内镜像 swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/mips64le/nginx:1.25.5-perl-linuxmips64le
镜像ID sha256:f2b7c10d57b57be88f818e348991ca56bbe859d07e07be471c65d8e3b7b8fdac
镜像TAG 1.25.5-perl-linuxmips64le
大小 258.70MB
镜像源 docker.io
项目信息 Docker-Hub主页 🚀项目TAG 🚀
CMD nginx -g daemon off;
启动入口 /docker-entrypoint.sh
工作目录
OS/平台 linux/mips64le
浏览量 9 次
贡献者
镜像创建 2024-04-23T22:15:45Z
同步时间 2025-11-21 23:13
更新时间 2025-11-22 00:00
开放端口
80/tcp
环境变量
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin NGINX_VERSION=1.25.5 NJS_VERSION=0.8.4 NJS_RELEASE=3~bookworm PKG_RELEASE=1~bookworm
镜像标签
NGINX Docker Maintainers <docker-maint@nginx.com>: maintainer

Docker拉取命令

docker pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/mips64le/nginx:1.25.5-perl-linuxmips64le
docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/mips64le/nginx:1.25.5-perl-linuxmips64le  docker.io/mips64le/nginx:1.25.5-perl

Containerd拉取命令

ctr images pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/mips64le/nginx:1.25.5-perl-linuxmips64le
ctr images tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/mips64le/nginx:1.25.5-perl-linuxmips64le  docker.io/mips64le/nginx:1.25.5-perl

Shell快速替换命令

sed -i 's#mips64le/nginx:1.25.5-perl#swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/mips64le/nginx:1.25.5-perl-linuxmips64le#' deployment.yaml

Ansible快速分发-Docker

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

Ansible快速分发-Containerd

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

镜像构建历史


# 2024-04-24 06:15:45  50.47MB 执行命令并创建新的镜像层
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}-${PKG_RELEASE}         nginx-module-geoip=${NGINX_VERSION}-${PKG_RELEASE}         nginx-module-image-filter=${NGINX_VERSION}-${PKG_RELEASE}         nginx-module-perl=${NGINX_VERSION}-${PKG_RELEASE}         nginx-module-njs=${NGINX_VERSION}+${NJS_VERSION}-${NJS_RELEASE}     "     && case "$dpkgArch" in         amd64|arm64)             echo "deb [signed-by=$NGINX_GPGKEY_PATH] https://nginx.org/packages/mainline/debian/ bookworm nginx" >> /etc/apt/sources.list.d/nginx.list             && apt-get update             ;;         *)             echo "deb-src [signed-by=$NGINX_GPGKEY_PATH] https://nginx.org/packages/mainline/debian/ bookworm 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 nginx-module-perl=${NGINX_VERSION}-${PKG_RELEASE}             && (                 cd "$tempDir"                 && DEB_BUILD_OPTIONS="nocheck parallel=$(nproc)"                     apt-get source --compile nginx-module-perl=${NGINX_VERSION}-${PKG_RELEASE}             )                         && 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
                        
# 2024-04-24 06:15:45  0.00B 设置默认要执行的命令
CMD ["nginx" "-g" "daemon off;"]
                        
# 2024-04-24 06:15:45  0.00B 设置停止容器时发送的系统调用信号
STOPSIGNAL SIGQUIT
                        
# 2024-04-24 06:15:45  0.00B 声明容器运行时监听的端口
EXPOSE map[80/tcp:{}]
                        
# 2024-04-24 06:15:45  0.00B 配置容器启动时运行的命令
ENTRYPOINT ["/docker-entrypoint.sh"]
                        
# 2024-04-24 06:15:45  4.62KB 复制新文件或目录到容器中
COPY 30-tune-worker-processes.sh /docker-entrypoint.d # buildkit
                        
# 2024-04-24 06:15:45  3.02KB 复制新文件或目录到容器中
COPY 20-envsubst-on-templates.sh /docker-entrypoint.d # buildkit
                        
# 2024-04-24 06:15:45  336.00B 复制新文件或目录到容器中
COPY 15-local-resolvers.envsh /docker-entrypoint.d # buildkit
                        
# 2024-04-24 06:15:45  2.12KB 复制新文件或目录到容器中
COPY 10-listen-on-ipv6-by-default.sh /docker-entrypoint.d # buildkit
                        
# 2024-04-24 06:15:45  1.62KB 复制新文件或目录到容器中
COPY docker-entrypoint.sh / # buildkit
                        
# 2024-04-24 06:15:45  102.45MB 执行命令并创建新的镜像层
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_GPGKEY=573BFD6B3D8FBC641079A6ABABF5BD827BD9BF62;     NGINX_GPGKEY_PATH=/etc/apt/keyrings/nginx-archive-keyring.gpg;     export GNUPGHOME="$(mktemp -d)";     found='';     for server in         hkp://keyserver.ubuntu.com:80         pgp.mit.edu     ; do         echo "Fetching GPG key $NGINX_GPGKEY from $server";         gpg1 --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;     gpg1 --export "$NGINX_GPGKEY" > "$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}-${PKG_RELEASE}         nginx-module-geoip=${NGINX_VERSION}-${PKG_RELEASE}         nginx-module-image-filter=${NGINX_VERSION}-${PKG_RELEASE}         nginx-module-njs=${NGINX_VERSION}+${NJS_VERSION}-${NJS_RELEASE}     "     && case "$dpkgArch" in         amd64|arm64)             echo "deb [signed-by=$NGINX_GPGKEY_PATH] https://nginx.org/packages/mainline/debian/ bookworm nginx" >> /etc/apt/sources.list.d/nginx.list             && apt-get update             ;;         *)             echo "deb-src [signed-by=$NGINX_GPGKEY_PATH] https://nginx.org/packages/mainline/debian/ bookworm 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 # buildkit
                        
# 2024-04-24 06:15:45  0.00B 设置环境变量 PKG_RELEASE
ENV PKG_RELEASE=1~bookworm
                        
# 2024-04-24 06:15:45  0.00B 设置环境变量 NJS_RELEASE
ENV NJS_RELEASE=3~bookworm
                        
# 2024-04-24 06:15:45  0.00B 设置环境变量 NJS_VERSION
ENV NJS_VERSION=0.8.4
                        
# 2024-04-24 06:15:45  0.00B 设置环境变量 NGINX_VERSION
ENV NGINX_VERSION=1.25.5
                        
# 2024-04-24 06:15:45  0.00B 添加元数据标签
LABEL maintainer=NGINX Docker Maintainers <docker-maint@nginx.com>
                        
# 2024-04-24 06:15:45  0.00B 
/bin/sh -c #(nop)  CMD ["bash"]
                        
# 2024-04-24 06:15:45  105.77MB 
/bin/sh -c #(nop) ADD file:a92da94a28279478b2eae11dcdcd2913fc06af02498a5515cc3f288668d74e43 in / 
                        
                    

镜像信息

{
    "Id": "sha256:f2b7c10d57b57be88f818e348991ca56bbe859d07e07be471c65d8e3b7b8fdac",
    "RepoTags": [
        "mips64le/nginx:1.25.5-perl",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/mips64le/nginx:1.25.5-perl-linuxmips64le"
    ],
    "RepoDigests": [
        "mips64le/nginx@sha256:beb632370cfbcf65134b232fc2dcb22bb1bfb5d8cac7577dd80617b99fd72491",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/mips64le/nginx@sha256:fba180f58311c7a42661ed94f9644fd38ce7fb66af47d1aaff486b805430e0ef"
    ],
    "Parent": "",
    "Comment": "buildkit.dockerfile.v0",
    "Created": "2024-04-23T22:15:45Z",
    "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.25.5",
            "NJS_VERSION=0.8.4",
            "NJS_RELEASE=3~bookworm",
            "PKG_RELEASE=1~bookworm"
        ],
        "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"
        },
        "StopSignal": "SIGQUIT"
    },
    "Architecture": "mips64le",
    "Os": "linux",
    "Size": 258702201,
    "GraphDriver": {
        "Data": {
            "LowerDir": "/var/lib/docker/overlay2/c9716a1af0518cf6acd8688ecb177b41c466491e15f8e934fe1f8d5ceb121678/diff:/var/lib/docker/overlay2/3cc25577c9259390140767d032af7f0b4933e10d989d30e25dc45460d4c33165/diff:/var/lib/docker/overlay2/44bf30ac5c3a272fa387294382be0aed52a629bb5894675f798d9d43bbbbe4a9/diff:/var/lib/docker/overlay2/71be45445c21bc275879aab4f7c001b8ae6f878f8a76448564f1a4f9dad76922/diff:/var/lib/docker/overlay2/793b289b632f98c610d9d347e4e9bc7a7b3cea883257aa19868663e5921a1ee7/diff:/var/lib/docker/overlay2/f3189d06c2e120ccb61523675bddd2cbc779991f3f2d64063de4e8d84692f801/diff:/var/lib/docker/overlay2/a5f21141498d9ef86c78be303ba9c945ec97c69118567dcdbb2a68c654242bad/diff",
            "MergedDir": "/var/lib/docker/overlay2/f730c05a1efac20ba7f02098dcb52c39a400b7a7d2028e3d0307a1fe7db531bf/merged",
            "UpperDir": "/var/lib/docker/overlay2/f730c05a1efac20ba7f02098dcb52c39a400b7a7d2028e3d0307a1fe7db531bf/diff",
            "WorkDir": "/var/lib/docker/overlay2/f730c05a1efac20ba7f02098dcb52c39a400b7a7d2028e3d0307a1fe7db531bf/work"
        },
        "Name": "overlay2"
    },
    "RootFS": {
        "Type": "layers",
        "Layers": [
            "sha256:ec5449c6d1c3bf3aa2ba26eab920671dd9b6571b37dc872eb0ca24705c6eecbc",
            "sha256:0ad6402e53f2ffd9a569b22102b04a1530005c3b8c991def14ed4ad01b8fd2ac",
            "sha256:2075aa0cfc680c4850ca3af80e960bb9b14d5b8daa75c4f0a61b08c0a8b85509",
            "sha256:d893983851e95f47ef87fa645dcc1c8046a2b24174cd7d7a59bcb33a5750242f",
            "sha256:1e908819c346a1f83d07a80ecbc52a5f5526a531131f811d50c1024c712cee65",
            "sha256:06829da558c2a44007c8271c7b2325ac2c8e41bdd8148531910480da68755123",
            "sha256:2ca30df7ae7e90df5511a6602b2d192155426396dceb078951aedb290d83e77c",
            "sha256:42c06d1a57b1aae35eebd6be54e927cb408b9c97222a14e9b82060fcde5c02e0"
        ]
    },
    "Metadata": {
        "LastTagTime": "2025-11-21T23:13:44.320101792+08:00"
    }
}

更多版本

docker.io/mips64le/nginx:1.28-perl

linux/mips64le docker.io264.79MB2025-11-21 21:17
7

docker.io/mips64le/nginx:1.25.5-perl

linux/mips64le docker.io258.70MB2025-11-21 23:13
8