docker.io/izerui/style520-website:latest linux/amd64

docker.io/izerui/style520-website:latest - 国内下载镜像源 浏览次数:28

温馨提示:此镜像为latest tag镜像,本站无法保证此版本为最新镜像

源镜像 docker.io/izerui/style520-website:latest
国内镜像 swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/izerui/style520-website:latest
镜像ID sha256:7592ae80b99007e12bc8a27b7357505227a6a1c99b94f87d2ac311228621de93
镜像TAG latest
大小 56.07MB
镜像源 docker.io
项目信息 Docker-Hub主页 🚀项目TAG 🚀
CMD nginx -g daemon off;
启动入口 /docker-entrypoint.sh
工作目录 /usr/share/nginx/html
OS/平台 linux/amd64
浏览量 28 次
贡献者
镜像创建 2025-11-01T12:14:32.870683916Z
同步时间 2025-11-01 20:23
更新时间 2025-11-02 16:52
开放端口
80/tcp
环境变量
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin NGINX_VERSION=1.29.3 PKG_RELEASE=1 DYNPKG_RELEASE=1 NJS_VERSION=0.9.4 NJS_RELEASE=1
镜像标签
NGINX Docker Maintainers <docker-maint@nginx.com>: maintainer 2025-11-01T12:14:28.457Z: org.opencontainers.image.created : org.opencontainers.image.description MIT: org.opencontainers.image.licenses 0caf4c15117fd705ac829bf8d0f2af6e920cc5e7: org.opencontainers.image.revision https://github.com/style520/website: org.opencontainers.image.source website: org.opencontainers.image.title https://github.com/style520/website: org.opencontainers.image.url main: org.opencontainers.image.version

Docker拉取命令

docker pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/izerui/style520-website:latest
docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/izerui/style520-website:latest  docker.io/izerui/style520-website:latest

Containerd拉取命令

ctr images pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/izerui/style520-website:latest
ctr images tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/izerui/style520-website:latest  docker.io/izerui/style520-website:latest

Shell快速替换命令

sed -i 's#izerui/style520-website:latest#swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/izerui/style520-website:latest#' deployment.yaml

Ansible快速分发-Docker

#ansible k8s -m shell -a 'docker pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/izerui/style520-website:latest && docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/izerui/style520-website:latest  docker.io/izerui/style520-website:latest'

Ansible快速分发-Containerd

#ansible k8s -m shell -a 'ctr images pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/izerui/style520-website:latest && ctr images tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/izerui/style520-website:latest  docker.io/izerui/style520-website:latest'

镜像构建历史


# 2025-11-01 20:14:32  0.00B 设置默认要执行的命令
CMD ["nginx" "-g" "daemon off;"]
                        
# 2025-11-01 20:14:32  0.00B 指定检查容器健康状态的命令
HEALTHCHECK &{["CMD-SHELL" "curl -f http://localhost/ || exit 1"] "30s" "3s" "5s" "0s" '\x03'}
                        
# 2025-11-01 20:14:32  0.00B 声明容器运行时监听的端口
EXPOSE [80/tcp]
                        
# 2025-11-01 20:14:32  783.00B 复制新文件或目录到容器中
COPY nginx.conf /etc/nginx/conf.d/default.conf # buildkit
                        
# 2025-11-01 20:14:32  1.83MB 执行命令并创建新的镜像层
RUN /bin/sh -c apk add --no-cache unzip curl &&     unzip /tmp/pagetemplatify-enterprise.zip -d /tmp/ &&     cp -r /tmp/pagetemplatify-enterprise/* /usr/share/nginx/html/ &&     rm -rf /tmp/pagetemplatify-enterprise.zip /tmp/pagetemplatify-enterprise # buildkit
                        
# 2025-11-01 20:14:32  1.39MB 复制新文件或目录到容器中
COPY pagetemplatify-enterprise.zip /tmp/ # buildkit
                        
# 2025-11-01 20:14:32  0.00B 执行命令并创建新的镜像层
RUN /bin/sh -c rm -rf /usr/share/nginx/html/* # buildkit
                        
# 2025-11-01 20:14:32  0.00B 设置工作目录为/usr/share/nginx/html
WORKDIR /usr/share/nginx/html
                        
# 2025-10-29 06:11:24  40.30MB 执行命令并创建新的镜像层
RUN /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=\"249858446828ace0c81ea3e057135aa368f3dab83430cf867bb9fc32598948f29c4bd50908491da704536af1106aa87553f6a76cc126c6833dc9b14dd00564b8 *${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-10-29 06:11:24  0.00B 设置环境变量 NJS_RELEASE
ENV NJS_RELEASE=1
                        
# 2025-10-29 06:11:24  0.00B 设置环境变量 NJS_VERSION
ENV NJS_VERSION=0.9.4
                        
# 2025-10-29 05:49:51  0.00B 设置默认要执行的命令
CMD ["nginx" "-g" "daemon off;"]
                        
# 2025-10-29 05:49:51  0.00B 设置停止容器时发送的系统调用信号
STOPSIGNAL SIGQUIT
                        
# 2025-10-29 05:49:51  0.00B 声明容器运行时监听的端口
EXPOSE map[80/tcp:{}]
                        
# 2025-10-29 05:49:51  0.00B 配置容器启动时运行的命令
ENTRYPOINT ["/docker-entrypoint.sh"]
                        
# 2025-10-29 05:49:51  4.62KB 复制新文件或目录到容器中
COPY 30-tune-worker-processes.sh /docker-entrypoint.d # buildkit
                        
# 2025-10-29 05:49:51  3.02KB 复制新文件或目录到容器中
COPY 20-envsubst-on-templates.sh /docker-entrypoint.d # buildkit
                        
# 2025-10-29 05:49:51  389.00B 复制新文件或目录到容器中
COPY 15-local-resolvers.envsh /docker-entrypoint.d # buildkit
                        
# 2025-10-29 05:49:51  2.12KB 复制新文件或目录到容器中
COPY 10-listen-on-ipv6-by-default.sh /docker-entrypoint.d # buildkit
                        
# 2025-10-29 05:49:51  1.62KB 复制新文件或目录到容器中
COPY docker-entrypoint.sh / # buildkit
                        
# 2025-10-29 05:49:51  4.21MB 执行命令并创建新的镜像层
RUN /bin/sh -c set -x     && addgroup -g 101 -S nginx     && adduser -S -D -H -u 101 -h /var/cache/nginx -s /sbin/nologin -G nginx -g nginx nginx     && 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=\"249858446828ace0c81ea3e057135aa368f3dab83430cf867bb9fc32598948f29c4bd50908491da704536af1106aa87553f6a76cc126c6833dc9b14dd00564b8 *${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-10-29 05:49:51  0.00B 设置环境变量 DYNPKG_RELEASE
ENV DYNPKG_RELEASE=1
                        
# 2025-10-29 05:49:51  0.00B 设置环境变量 PKG_RELEASE
ENV PKG_RELEASE=1
                        
# 2025-10-29 05:49:51  0.00B 设置环境变量 NGINX_VERSION
ENV NGINX_VERSION=1.29.3
                        
# 2025-10-29 05:49:51  0.00B 添加元数据标签
LABEL maintainer=NGINX Docker Maintainers <docker-maint@nginx.com>
                        
# 2025-10-08 19:04:56  0.00B 设置默认要执行的命令
CMD ["/bin/sh"]
                        
# 2025-10-08 19:04:56  8.32MB 复制文件或目录到容器中
ADD alpine-minirootfs-3.22.2-x86_64.tar.gz / # buildkit
                        
                    

镜像信息

{
    "Id": "sha256:7592ae80b99007e12bc8a27b7357505227a6a1c99b94f87d2ac311228621de93",
    "RepoTags": [
        "izerui/style520-website:latest",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/izerui/style520-website:latest"
    ],
    "RepoDigests": [
        "izerui/style520-website@sha256:aea1e2e3208799c0c28fa84136689da7b7a0503b768f6c691c271b8ea5b1180a",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/izerui/style520-website@sha256:43710e64cb4d102a72a08c1d6e29540e2b3d544ac2fa76948d7a86086e62b6ee"
    ],
    "Parent": "",
    "Comment": "buildkit.dockerfile.v0",
    "Created": "2025-11-01T12:14:32.870683916Z",
    "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.29.3",
            "PKG_RELEASE=1",
            "DYNPKG_RELEASE=1",
            "NJS_VERSION=0.9.4",
            "NJS_RELEASE=1"
        ],
        "Cmd": [
            "nginx",
            "-g",
            "daemon off;"
        ],
        "Healthcheck": {
            "Test": [
                "CMD-SHELL",
                "curl -f http://localhost/ || exit 1"
            ],
            "Interval": 30000000000,
            "Timeout": 3000000000,
            "StartPeriod": 5000000000,
            "Retries": 3
        },
        "ArgsEscaped": true,
        "Image": "",
        "Volumes": null,
        "WorkingDir": "/usr/share/nginx/html",
        "Entrypoint": [
            "/docker-entrypoint.sh"
        ],
        "OnBuild": null,
        "Labels": {
            "maintainer": "NGINX Docker Maintainers \u003cdocker-maint@nginx.com\u003e",
            "org.opencontainers.image.created": "2025-11-01T12:14:28.457Z",
            "org.opencontainers.image.description": "",
            "org.opencontainers.image.licenses": "MIT",
            "org.opencontainers.image.revision": "0caf4c15117fd705ac829bf8d0f2af6e920cc5e7",
            "org.opencontainers.image.source": "https://github.com/style520/website",
            "org.opencontainers.image.title": "website",
            "org.opencontainers.image.url": "https://github.com/style520/website",
            "org.opencontainers.image.version": "main"
        },
        "StopSignal": "SIGQUIT"
    },
    "Architecture": "amd64",
    "Os": "linux",
    "Size": 56066512,
    "GraphDriver": {
        "Data": {
            "LowerDir": "/var/lib/docker/overlay2/e86fc414996a6027cc28aa4d5918a7a997a4ff861ab750db7fda99d0870ce38e/diff:/var/lib/docker/overlay2/90d1ce25a70ab166c1b7b65e45e38329077f5d1d9c0a40b5136ae9993b3e1c75/diff:/var/lib/docker/overlay2/28746c695d700189c82a972cceba74b07791e6b5a8a23282232b682a0310ffc3/diff:/var/lib/docker/overlay2/d3f1e3f6aee85b9b3c3929937ac2a053cf185b505adb892a3738f07f2f3e7343/diff:/var/lib/docker/overlay2/9e8e37b4aff6b78459c083866f2f02f63eb0e8ef32014dddb859b7758fd36127/diff:/var/lib/docker/overlay2/9165feee1b7c3fe946fca5457d42707cc086687496a2536882833fba6ede440e/diff:/var/lib/docker/overlay2/dd4b14d8f279403f15bc3c4df5d954caf8d6c72e5738e3f409b063bbe21a2ec5/diff:/var/lib/docker/overlay2/89b6ca4ef7ab3f1902cf9da7ae35a7e82b28e5559cb4647df5ba36cc1330ee63/diff:/var/lib/docker/overlay2/f6c3b3a5cd0b37e44c2e4a881906ae246025f04741244918ceb785042098790c/diff:/var/lib/docker/overlay2/54e50dd8a8646068517cc5a3984f3f0559e574647529e2f195ac3ade07d79bdc/diff:/var/lib/docker/overlay2/c6588abb6012ff86b92c0fd4b9b91249792a3db88d908bec909a7ab293529672/diff:/var/lib/docker/overlay2/9228d0dea91f2a86651259163a395152983e6f8dd01e3c64990f331280069735/diff",
            "MergedDir": "/var/lib/docker/overlay2/fccafeef216f87bbcbceae5055d50be3c334572a9411933dd41b175547b5aa22/merged",
            "UpperDir": "/var/lib/docker/overlay2/fccafeef216f87bbcbceae5055d50be3c334572a9411933dd41b175547b5aa22/diff",
            "WorkDir": "/var/lib/docker/overlay2/fccafeef216f87bbcbceae5055d50be3c334572a9411933dd41b175547b5aa22/work"
        },
        "Name": "overlay2"
    },
    "RootFS": {
        "Type": "layers",
        "Layers": [
            "sha256:256f393e029fa2063d8c93720da36a74a032bed3355a2bc3e313ad12f8bde9d1",
            "sha256:50b58ca2a3f5df327f34b26a67bcf09e84bd922972d651ed30939fc7378f8acc",
            "sha256:2660a7d4b906e8971834a94fe42c4308aa83aec0f7a1d590f21cab4ac85ab303",
            "sha256:2c79d5d895bb2e6ac5cbfc4eaf09318c655d5713d2629542e29d0564a5dc84f8",
            "sha256:b74d92be8225184e9cce1d356d9852b23fd4593ac2bc2b1e2e843dac819758ca",
            "sha256:3297b9628ff3624c5cec418fce70b84e81cee2d50beec077b58fb6daf478df56",
            "sha256:99ea4bde418df15b6e7a8b9e4aed69b3b46a7176e7dcd26ee8f715cf0f29a4a2",
            "sha256:25906c27b84d62cffa22785bff6e5f2d29499313c43b8a4985890528ac72c7ac",
            "sha256:5f70bf18a086007016e948b04aed3b82103a36bea41755b6cddfaf10ace3c6ef",
            "sha256:960c79330aac129e86fcb44ffbf5a3e2b9dd139c049665c664629bbb42f19b18",
            "sha256:605992c1c0bbd0437c572464bf179f4719ab796b3edb94d3811a446527a1e38c",
            "sha256:abfe522510af39685812dae981bd2ae0a806267a06b1ea82ddfb302c250a4e2e",
            "sha256:6f639bee28769151eef711f9e6229418fc8dae5284fdfbc976fed7b04614d211"
        ]
    },
    "Metadata": {
        "LastTagTime": "2025-11-01T20:23:25.049050833+08:00"
    }
}

更多版本

docker.io/izerui/style520-website:latest

linux/amd64 docker.io56.07MB2025-11-01 20:23
27