docker.io/corentinth/it-tools:2024.10.22-7ca5933 linux/arm64

docker.io/corentinth/it-tools:2024.10.22-7ca5933 - 国内下载镜像源 浏览次数:9 温馨提示: 这是一个 linux/arm64 系统架构镜像

镜像描述:

it-tools

 



无描述信息!

源镜像 docker.io/corentinth/it-tools:2024.10.22-7ca5933
国内镜像 swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/corentinth/it-tools:2024.10.22-7ca5933-linuxarm64
镜像ID sha256:26a12c2c30b46ce96b50dabd194867a12bb49d7e77ab92b9bd2ded8a07a7f117
镜像TAG 2024.10.22-7ca5933-linuxarm64
大小 59.92MB
镜像源 docker.io
项目信息 Docker-Hub主页 🚀项目TAG 🚀
CMD nginx -g daemon off;
启动入口 /docker-entrypoint.sh
工作目录
OS/平台 linux/arm64
浏览量 9 次
贡献者
镜像创建 2024-10-22T08:36:31.544069317Z
同步时间 2025-09-16 09:18
更新时间 2025-09-16 14:41
开放端口
80/tcp
环境变量
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin NGINX_VERSION=1.26.2 PKG_RELEASE=1 DYNPKG_RELEASE=2 NJS_VERSION=0.8.5 NJS_RELEASE=1
镜像标签
NGINX Docker Maintainers <docker-maint@nginx.com>: maintainer

Docker拉取命令

docker pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/corentinth/it-tools:2024.10.22-7ca5933-linuxarm64
docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/corentinth/it-tools:2024.10.22-7ca5933-linuxarm64  docker.io/corentinth/it-tools:2024.10.22-7ca5933

Containerd拉取命令

ctr images pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/corentinth/it-tools:2024.10.22-7ca5933-linuxarm64
ctr images tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/corentinth/it-tools:2024.10.22-7ca5933-linuxarm64  docker.io/corentinth/it-tools:2024.10.22-7ca5933

Shell快速替换命令

sed -i 's#corentinth/it-tools:2024.10.22-7ca5933#swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/corentinth/it-tools:2024.10.22-7ca5933-linuxarm64#' deployment.yaml

Ansible快速分发-Docker

#ansible k8s -m shell -a 'docker pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/corentinth/it-tools:2024.10.22-7ca5933-linuxarm64 && docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/corentinth/it-tools:2024.10.22-7ca5933-linuxarm64  docker.io/corentinth/it-tools:2024.10.22-7ca5933'

Ansible快速分发-Containerd

#ansible k8s -m shell -a 'ctr images pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/corentinth/it-tools:2024.10.22-7ca5933-linuxarm64 && ctr images tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/corentinth/it-tools:2024.10.22-7ca5933-linuxarm64  docker.io/corentinth/it-tools:2024.10.22-7ca5933'

镜像构建历史


# 2024-10-22 16:36:31  0.00B 设置默认要执行的命令
CMD ["nginx" "-g" "daemon off;"]
                        
# 2024-10-22 16:36:31  0.00B 声明容器运行时监听的端口
EXPOSE map[80/tcp:{}]
                        
# 2024-10-22 16:36:31  172.00B 复制新文件或目录到容器中
COPY nginx.conf /etc/nginx/conf.d/default.conf # buildkit
                        
# 2024-10-22 16:36:31  12.96MB 复制新文件或目录到容器中
COPY /app/dist /usr/share/nginx/html # buildkit
                        
# 2024-08-15 07:51:24  33.82MB 执行命令并创建新的镜像层
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/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 -O https://hg.nginx.org/pkg-oss/archive/${NGINX_VERSION}-${PKG_RELEASE}.tar.gz                 && PKGOSSCHECKSUM=\"825f610c44dfb97166112e6d060c0ba209a74f50e42c7c23a5b8742f468596f110bb1b4ca9299547a8a3d41f3a7caa864622f40f6c7bb4d8bab3d24880bdfb6a *${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
                        
# 2024-08-15 07:51:24  0.00B 设置环境变量 NJS_RELEASE
ENV NJS_RELEASE=1
                        
# 2024-08-15 07:51:24  0.00B 设置环境变量 NJS_VERSION
ENV NJS_VERSION=0.8.5
                        
# 2024-08-15 07:51:24  0.00B 设置默认要执行的命令
CMD ["nginx" "-g" "daemon off;"]
                        
# 2024-08-15 07:51:24  0.00B 设置停止容器时发送的系统调用信号
STOPSIGNAL SIGQUIT
                        
# 2024-08-15 07:51:24  0.00B 声明容器运行时监听的端口
EXPOSE map[80/tcp:{}]
                        
# 2024-08-15 07:51:24  0.00B 配置容器启动时运行的命令
ENTRYPOINT ["/docker-entrypoint.sh"]
                        
# 2024-08-15 07:51:24  4.62KB 复制新文件或目录到容器中
COPY 30-tune-worker-processes.sh /docker-entrypoint.d # buildkit
                        
# 2024-08-15 07:51:24  3.02KB 复制新文件或目录到容器中
COPY 20-envsubst-on-templates.sh /docker-entrypoint.d # buildkit
                        
# 2024-08-15 07:51:24  336.00B 复制新文件或目录到容器中
COPY 15-local-resolvers.envsh /docker-entrypoint.d # buildkit
                        
# 2024-08-15 07:51:24  2.12KB 复制新文件或目录到容器中
COPY 10-listen-on-ipv6-by-default.sh /docker-entrypoint.d # buildkit
                        
# 2024-08-15 07:51:24  1.62KB 复制新文件或目录到容器中
COPY docker-entrypoint.sh / # buildkit
                        
# 2024-08-15 07:51:24  4.31MB 执行命令并创建新的镜像层
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/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 -O https://hg.nginx.org/pkg-oss/archive/${NGINX_VERSION}-${PKG_RELEASE}.tar.gz                 && PKGOSSCHECKSUM=\"825f610c44dfb97166112e6d060c0ba209a74f50e42c7c23a5b8742f468596f110bb1b4ca9299547a8a3d41f3a7caa864622f40f6c7bb4d8bab3d24880bdfb6a *${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 --virtual .gettext gettext     && mv /usr/bin/envsubst /tmp/         && runDeps="$(         scanelf --needed --nobanner /tmp/envsubst             | awk '{ gsub(/,/, "\nso:", $2); print "so:" $2 }'             | sort -u             | xargs -r apk info --installed             | sort -u     )"     && apk add --no-cache $runDeps     && apk del --no-network .gettext     && mv /tmp/envsubst /usr/local/bin/     && 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
                        
# 2024-08-15 07:51:24  0.00B 设置环境变量 DYNPKG_RELEASE
ENV DYNPKG_RELEASE=2
                        
# 2024-08-15 07:51:24  0.00B 设置环境变量 PKG_RELEASE
ENV PKG_RELEASE=1
                        
# 2024-08-15 07:51:24  0.00B 设置环境变量 NGINX_VERSION
ENV NGINX_VERSION=1.26.2
                        
# 2024-08-15 07:51:24  0.00B 添加元数据标签
LABEL maintainer=NGINX Docker Maintainers <docker-maint@nginx.com>
                        
# 2024-08-15 07:51:24  0.00B 
/bin/sh -c #(nop)  CMD ["/bin/sh"]
                        
# 2024-08-15 07:51:24  8.83MB 
/bin/sh -c #(nop) ADD file:ee5bb8409915b11413f44cce4c22fed658aba4fb078a448e08dd4ac9a23581f2 in / 
                        
                    

镜像信息

{
    "Id": "sha256:26a12c2c30b46ce96b50dabd194867a12bb49d7e77ab92b9bd2ded8a07a7f117",
    "RepoTags": [
        "corentinth/it-tools:2024.10.22-7ca5933",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/corentinth/it-tools:2024.10.22-7ca5933-linuxarm64"
    ],
    "RepoDigests": [
        "corentinth/it-tools@sha256:8b8128748339583ca951af03dfe02a9a4d7363f61a216226fc28030731a5a61f",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/corentinth/it-tools@sha256:eaf3f6386437e98a25afd6a2284e23c058b60b6e40d65c54f2ec7cf5285a2a72"
    ],
    "Parent": "",
    "Comment": "buildkit.dockerfile.v0",
    "Created": "2024-10-22T08:36:31.544069317Z",
    "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.26.2",
            "PKG_RELEASE=1",
            "DYNPKG_RELEASE=2",
            "NJS_VERSION=0.8.5",
            "NJS_RELEASE=1"
        ],
        "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": "arm64",
    "Os": "linux",
    "Size": 59921710,
    "GraphDriver": {
        "Data": {
            "LowerDir": "/var/lib/docker/overlay2/77d0a2b855d93957c83a25638b87f036b3edc3cf8cca84c9c212dc628b50d52a/diff:/var/lib/docker/overlay2/25d45aef36860d9017f57ff59d9ab4608f7470782949302a45bf724d15e08093/diff:/var/lib/docker/overlay2/3044206fec5721b3a28f81284756845cf3d05138b6fa940396e40fad006fabad/diff:/var/lib/docker/overlay2/67b79655c60ed6690cf459821d486752fafe9a4e7adce12302cd0a8044dfa01b/diff:/var/lib/docker/overlay2/fb4b2dbdcf343b5c519a94c90992d3b1ffceff3c68f69ece43f7b531103e4b87/diff:/var/lib/docker/overlay2/f11cf73541e532c016179f3ab1e908f138d8d6aef215dec73effeadff98152eb/diff:/var/lib/docker/overlay2/aae7c3b0ebeb57f130970a02d573486cfa042e924d9106d2bc6b15939ca78b0a/diff:/var/lib/docker/overlay2/ead39c4c592c9026d0b9ed46889bcb502459c75a15b9672c2c35bf66799f0e3f/diff:/var/lib/docker/overlay2/a6e858b5b79c9ff5ef9d7b8115612eaa703ff8a14142b1ebdc3632777793c143/diff",
            "MergedDir": "/var/lib/docker/overlay2/2499682a989eb70e7a2ec02b29251dd5a719d76a390d841f496ca1831f44ebd8/merged",
            "UpperDir": "/var/lib/docker/overlay2/2499682a989eb70e7a2ec02b29251dd5a719d76a390d841f496ca1831f44ebd8/diff",
            "WorkDir": "/var/lib/docker/overlay2/2499682a989eb70e7a2ec02b29251dd5a719d76a390d841f496ca1831f44ebd8/work"
        },
        "Name": "overlay2"
    },
    "RootFS": {
        "Type": "layers",
        "Layers": [
            "sha256:16113d51b7181f20135f51e8ffbaead20a7671cd783017601f198748ce8a8ebf",
            "sha256:aba51a937ecee4bd17d9a91fd881de675d68e127ebaf82421ea53c8e448252ce",
            "sha256:19b99229acb1f3f42bfda04f9cff83fe1a3e30471724fe21fedb3a78e68e02d6",
            "sha256:ccb3eeff60e27c5ec6dbdd2a9ca9c22a26ae2dc8fdfbab2d8cf3d06302fa7bfd",
            "sha256:0b8b7a234b6b17a53377bee89320ae5b08f4ed547c41ca3065d638fe607a9d54",
            "sha256:5b76c901fc0bb710a75485338a346594ac1a335b75da6948bc497bf98decc62c",
            "sha256:848354125c89e3ca2ef6c63862e3825a7fe390bc0594b5d5d3b573958ad6cabd",
            "sha256:1f7c0bba8e9ce682a9a0ff0c76fc6fe1d1ce63b98accdb33edd9ae90fab786da",
            "sha256:2b5180731c6cbdb2ab81d197741131953e4df97cb762c9612def83479f514b46",
            "sha256:0d17ffe7086e5bab35012680e48e373e97a7085d939e96630d691fab3f32fe60"
        ]
    },
    "Metadata": {
        "LastTagTime": "2025-09-16T09:18:20.228703414+08:00"
    }
}

更多版本

docker.io/corentinth/it-tools:2024.5.13-a0bc346

linux/amd64 docker.io60.89MB2024-09-14 15:00
272

docker.io/corentinth/it-tools:latest

linux/amd64 docker.io60.89MB2024-10-18 23:49
341

docker.io/corentinth/it-tools:2024.10.22-7ca5933

linux/amd64 docker.io56.19MB2025-02-11 20:02
188

docker.io/corentinth/it-tools:2024.10.22-7ca5933

linux/arm64 docker.io59.92MB2025-09-16 09:18
8