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

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

镜像描述:

it-tools

 



无描述信息!

源镜像 docker.io/corentinth/it-tools:2024.5.13-a0bc346
国内镜像 swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/corentinth/it-tools:2024.5.13-a0bc346
镜像ID sha256:78612560eb20365f3a59f3f912a135e54de655c485582f939826bf28a89f6e70
镜像TAG 2024.5.13-a0bc346
大小 60.89MB
镜像源 docker.io
项目信息 Docker-Hub主页 🚀项目TAG 🚀
CMD nginx -g daemon off;
启动入口 /docker-entrypoint.sh
工作目录
OS/平台 linux/amd64
浏览量 163 次
贡献者 17*******5@qq.com
镜像创建 2024-05-13T08:58:38.494741406Z
同步时间 2024-09-14 15:00
更新时间 2025-02-22 04:58
开放端口
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

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

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

Containerd拉取命令

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

Shell快速替换命令

sed -i 's#corentinth/it-tools:2024.5.13-a0bc346#swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/corentinth/it-tools:2024.5.13-a0bc346#' 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.5.13-a0bc346 && docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/corentinth/it-tools:2024.5.13-a0bc346  docker.io/corentinth/it-tools:2024.5.13-a0bc346'

Ansible快速分发-Containerd

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

镜像构建历史


# 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:2024.5.13-a0bc346",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/corentinth/it-tools:2024.5.13-a0bc346"
    ],
    "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/c02c261f4f201e8038619723f8f694de5026f1877503f96d212da7831778bf4f/diff:/var/lib/docker/overlay2/8e5b49a53eb2573958416689425edf067be90bb891312b935b0a0140d781c891/diff:/var/lib/docker/overlay2/0546f49094fac724c605ca3f09672789515fb204b6b1a3933207425472a65426/diff:/var/lib/docker/overlay2/c9a49caf31b7b265cbb75fbd9c109b42ed17ba8189be241172706e30f44f66f7/diff:/var/lib/docker/overlay2/8061dd6a7a6f855ea32332d23482b40f8317b6f0177d7eda6f4cccfc2961584a/diff:/var/lib/docker/overlay2/15b3365e5b82a83e8e76f34c6f75ad93e46aaa6d2d51a2404828e137939fa12c/diff:/var/lib/docker/overlay2/9f0102b32c9946f09f62fe1a89430e7adcd18910b75f5ca6498d9e1d8fd58982/diff:/var/lib/docker/overlay2/fd1918e5f5f4ac46cab4f9d514ad6a946e1e245d98db153ee02b59cf789df79b/diff:/var/lib/docker/overlay2/27f9e469fe627f917495a015135a9d57c175aa9a4c4034d69c51def780150b56/diff",
            "MergedDir": "/var/lib/docker/overlay2/49f1c9bfe829afbbddd4f85cfb788400416e417302f847de3adf60ce27737e6c/merged",
            "UpperDir": "/var/lib/docker/overlay2/49f1c9bfe829afbbddd4f85cfb788400416e417302f847de3adf60ce27737e6c/diff",
            "WorkDir": "/var/lib/docker/overlay2/49f1c9bfe829afbbddd4f85cfb788400416e417302f847de3adf60ce27737e6c/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-09-14T15:00:26.158514445+08:00"
    }
}

更多版本

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

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

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