docker.io/corentinth/it-tools:latest linux/amd64

docker.io/corentinth/it-tools:latest - 国内下载镜像源 浏览次数:146

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

镜像描述:

it-tools

 



无描述信息!

源镜像 docker.io/corentinth/it-tools:latest
国内镜像 swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/corentinth/it-tools:latest
镜像ID sha256:78612560eb20365f3a59f3f912a135e54de655c485582f939826bf28a89f6e70
镜像TAG latest
大小 60.89MB
镜像源 docker.io
项目信息 Docker-Hub主页 🚀项目TAG 🚀
CMD nginx -g daemon off;
启动入口 /docker-entrypoint.sh
工作目录
OS/平台 linux/amd64
浏览量 146 次
贡献者 ch*******i@qq.com
镜像创建 2024-05-13T08:58:38.494741406Z
同步时间 2024-10-18 23:49
更新时间 2025-02-20 23:09
开放端口
80/tcp
环境变量
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin NGINX_VERSION=1.26.0 PKG_RELEASE=1 NJS_VERSION=0.8.4 NJS_RELEASE=2
镜像标签
NGINX Docker Maintainers <docker-maint@nginx.com>: maintainer
镜像安全扫描 查看Trivy扫描报告

系统OS: alpine 3.19.1 扫描引擎: Trivy 扫描时间: 2024-10-27 08:28

低危漏洞:2 中危漏洞:31 高危漏洞:5 严重漏洞:2

Docker拉取命令 无权限下载?点我修复

docker pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/corentinth/it-tools:latest
docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/corentinth/it-tools:latest  docker.io/corentinth/it-tools:latest

Containerd拉取命令

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

Shell快速替换命令

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

Ansible快速分发-Docker

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

Ansible快速分发-Containerd

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

镜像构建历史


# 2024-05-13 16:58:38  0.00B 设置默认要执行的命令
CMD ["nginx" "-g" "daemon off;"]
                        
# 2024-05-13 16:58:38  0.00B 声明容器运行时监听的端口
EXPOSE map[80/tcp:{}]
                        
# 2024-05-13 16:58:38  172.00B 复制新文件或目录到容器中
COPY nginx.conf /etc/nginx/conf.d/default.conf # buildkit
                        
# 2024-05-13 16:58:38  12.59MB 复制新文件或目录到容器中
COPY /app/dist /usr/share/nginx/html # buildkit
                        
# 2024-05-04 03:49:21  31.23MB 执行命令并创建新的镜像层
RUN /bin/sh -c set -x     && apkArch="$(cat /etc/apk/arch)"     && nginxPackages="         nginx=${NGINX_VERSION}-r${PKG_RELEASE}         nginx-module-xslt=${NGINX_VERSION}-r${PKG_RELEASE}         nginx-module-geoip=${NGINX_VERSION}-r${PKG_RELEASE}         nginx-module-image-filter=${NGINX_VERSION}-r${PKG_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             && su nobody -s /bin/sh -c "                 export HOME=${tempDir}                 && cd ${tempDir}                 && curl -f -O https://hg.nginx.org/pkg-oss/archive/73d6839714a2.tar.gz                 && PKGOSSCHECKSUM=\"95d513d058493d60cba5a6bb328dc3c3e75ea115cf248a64bd921159e11c6fc87d33c7f058562c584fe440a219b931d53fd66bd4c596244b54287b62979834db *73d6839714a2.tar.gz\"                 && if [ \"\$(openssl sha512 -r 73d6839714a2.tar.gz)\" = \"\$PKGOSSCHECKSUM\" ]; then                     echo \"pkg-oss tarball checksum verification succeeded!\";                 else                     echo \"pkg-oss tarball checksum verification failed!\";                     exit 1;                 fi                 && tar xzvf 73d6839714a2.tar.gz                 && cd pkg-oss-73d6839714a2                 && cd alpine                 && make module-geoip module-image-filter module-njs module-xslt                 && apk index -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-05-04 03:49:21  0.00B 设置环境变量 NJS_RELEASE
ENV NJS_RELEASE=2
                        
# 2024-05-04 03:49:21  0.00B 设置环境变量 NJS_VERSION
ENV NJS_VERSION=0.8.4
                        
# 2024-05-04 03:49:21  0.00B 设置默认要执行的命令
CMD ["nginx" "-g" "daemon off;"]
                        
# 2024-05-04 03:49:21  0.00B 设置停止容器时发送的系统调用信号
STOPSIGNAL SIGQUIT
                        
# 2024-05-04 03:49:21  0.00B 声明容器运行时监听的端口
EXPOSE map[80/tcp:{}]
                        
# 2024-05-04 03:49:21  0.00B 配置容器启动时运行的命令
ENTRYPOINT ["/docker-entrypoint.sh"]
                        
# 2024-05-04 03:49:21  4.62KB 复制新文件或目录到容器中
COPY 30-tune-worker-processes.sh /docker-entrypoint.d # buildkit
                        
# 2024-05-04 03:49:21  3.02KB 复制新文件或目录到容器中
COPY 20-envsubst-on-templates.sh /docker-entrypoint.d # buildkit
                        
# 2024-05-04 03:49:21  336.00B 复制新文件或目录到容器中
COPY 15-local-resolvers.envsh /docker-entrypoint.d # buildkit
                        
# 2024-05-04 03:49:21  2.12KB 复制新文件或目录到容器中
COPY 10-listen-on-ipv6-by-default.sh /docker-entrypoint.d # buildkit
                        
# 2024-05-04 03:49:21  1.62KB 复制新文件或目录到容器中
COPY docker-entrypoint.sh / # buildkit
                        
# 2024-05-04 03:49:21  9.68MB 执行命令并创建新的镜像层
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             && su nobody -s /bin/sh -c "                 export HOME=${tempDir}                 && cd ${tempDir}                 && curl -f -O https://hg.nginx.org/pkg-oss/archive/73d6839714a2.tar.gz                 && PKGOSSCHECKSUM=\"95d513d058493d60cba5a6bb328dc3c3e75ea115cf248a64bd921159e11c6fc87d33c7f058562c584fe440a219b931d53fd66bd4c596244b54287b62979834db *73d6839714a2.tar.gz\"                 && if [ \"\$(openssl sha512 -r 73d6839714a2.tar.gz)\" = \"\$PKGOSSCHECKSUM\" ]; then                     echo \"pkg-oss tarball checksum verification succeeded!\";                 else                     echo \"pkg-oss tarball checksum verification failed!\";                     exit 1;                 fi                 && tar xzvf 73d6839714a2.tar.gz                 && cd pkg-oss-73d6839714a2                 && cd alpine                 && make base                 && apk index -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-05-04 03:49:21  0.00B 设置环境变量 PKG_RELEASE
ENV PKG_RELEASE=1
                        
# 2024-05-04 03:49:21  0.00B 设置环境变量 NGINX_VERSION
ENV NGINX_VERSION=1.26.0
                        
# 2024-05-04 03:49:21  0.00B 添加元数据标签
LABEL maintainer=NGINX Docker Maintainers <docker-maint@nginx.com>
                        
# 2024-01-27 08:30:48  0.00B 
/bin/sh -c #(nop)  CMD ["/bin/sh"]
                        
# 2024-01-27 08:30:48  7.38MB 
/bin/sh -c #(nop) ADD file:37a76ec18f9887751cd8473744917d08b7431fc4085097bb6a09d81b41775473 in / 
                        
                    

镜像信息

{
    "Id": "sha256:78612560eb20365f3a59f3f912a135e54de655c485582f939826bf28a89f6e70",
    "RepoTags": [
        "corentinth/it-tools:latest",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/corentinth/it-tools:latest"
    ],
    "RepoDigests": [
        "corentinth/it-tools@sha256:c191615f23eb6a18b8faca4dba15fc11caefea250ce3a8e29d249757544092eb",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/corentinth/it-tools@sha256:f6de1bb5a9ffc61bbdc2e541f08d63d5cb5a3eda7dfa6d65b05f8c60c39a8fa3"
    ],
    "Parent": "",
    "Comment": "buildkit.dockerfile.v0",
    "Created": "2024-05-13T08:58:38.494741406Z",
    "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.0",
            "PKG_RELEASE=1",
            "NJS_VERSION=0.8.4",
            "NJS_RELEASE=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"
        },
        "StopSignal": "SIGQUIT"
    },
    "Architecture": "amd64",
    "Os": "linux",
    "Size": 60892432,
    "GraphDriver": {
        "Data": {
            "LowerDir": "/var/lib/docker/overlay2/a5b0244a5e799e58aed6be034d8827e86cb0d81ce5d532f70ce3706ae171338f/diff:/var/lib/docker/overlay2/1cf7d729ae8534ad5e971823446b03e771f4e70b9ab51be6e92c1a135fe3a98e/diff:/var/lib/docker/overlay2/5ad81d3706b1fdb1c768f04f8128632af64c9c5e62836190e362be49814fe79b/diff:/var/lib/docker/overlay2/57947f06b15edc2317e0aa11b9be2810d99301339fa44ada50cffe0b933f7a01/diff:/var/lib/docker/overlay2/752baa71c67b92822084891f6ea708c61db72b4a28d5c5360eda0e305bca7400/diff:/var/lib/docker/overlay2/573adbb763f253509d8340050af5d1dcef1ba8af3f86f703ef83d9d791c6325f/diff:/var/lib/docker/overlay2/784f1429dac8f9c704732385e47fea3951d6fa454b5ed12183ff1f7fe2e874aa/diff:/var/lib/docker/overlay2/2251c31176f8ab845a7e8f8e63813887d1f4b5685ed560905c4c7d2dc6c6216e/diff:/var/lib/docker/overlay2/05020cdd716af9042a848dfa1a82562fa9510169a4d19fd27c55bee01abe28d6/diff",
            "MergedDir": "/var/lib/docker/overlay2/09517e5c3dc2ad2593937865d6439550f43a82831f0b089d08c92229df7af5ff/merged",
            "UpperDir": "/var/lib/docker/overlay2/09517e5c3dc2ad2593937865d6439550f43a82831f0b089d08c92229df7af5ff/diff",
            "WorkDir": "/var/lib/docker/overlay2/09517e5c3dc2ad2593937865d6439550f43a82831f0b089d08c92229df7af5ff/work"
        },
        "Name": "overlay2"
    },
    "RootFS": {
        "Type": "layers",
        "Layers": [
            "sha256:d4fc045c9e3a848011de66f34b81f052d4f2c15a17bb196d637e526349601820",
            "sha256:0d01880f987b63e1e77dd2aa616b2c81c9849d8bfbcfa2d522a43ed2a8872181",
            "sha256:2806be01f22987ee4a8b98382efd01e1056b3123bd9dba70fc569ff7b096075f",
            "sha256:3651e56dc394bd6afea220c0a4957c26d37ca590e7cb93f6a14e77fe4f5dc3e6",
            "sha256:c19ca31bf212726d6fe268ed0c6d6b43101bf710ee7d8a7b1e2294ab31afc4c2",
            "sha256:caa2c1164fa4f1e7e10db2fadac85eb3e0f69a60354903373cec81bf45cc23a1",
            "sha256:c8ee365a8f96603ec94166f1d47a16d5e0d2ec8b021ef8bbb62aa7f6082e22ee",
            "sha256:3f815151f15aca7a2603d967ba62e73fde583de4fea34083ede8fe7c20c94101",
            "sha256:5b579849c8399a5ccc5244e71c1171bbe0a40bd4c951e6f76ca03cfb2a1f3da5",
            "sha256:c29df274f7ee5a412305dd97f4b3394f190fd0cd73a9ad9889da97bcaad78ae9"
        ]
    },
    "Metadata": {
        "LastTagTime": "2024-10-18T23:49:56.329502299+08:00"
    }
}

更多版本

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

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

docker.io/corentinth/it-tools:latest

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

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

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