docker.io/docker:20.10 linux/arm64

docker.io/docker:20.10 - 国内下载镜像源 浏览次数:17 温馨提示: 这是一个 linux/arm64 系统架构镜像
docker.io/docker

官方 Docker 镜像

源镜像 docker.io/docker:20.10
国内镜像 swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/docker:20.10-linuxarm64
镜像ID sha256:3c01dfae9fd65cdb2c4a1a1555361e1a548603c4a24cbc4e19ce530971d54dca
镜像TAG 20.10-linuxarm64
大小 159.90MB
镜像源 docker.io
项目信息 Docker-Hub主页 🚀项目TAG 🚀
CMD sh
启动入口 docker-entrypoint.sh
工作目录
OS/平台 linux/arm64
浏览量 17 次
贡献者
镜像创建 2023-05-10T10:04:23Z
同步时间 2025-10-29 17:42
更新时间 2025-10-31 06:18
环境变量
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin DOCKER_VERSION=20.10.24 DOCKER_BUILDX_VERSION=0.10.4 DOCKER_COMPOSE_VERSION=2.17.3 DOCKER_TLS_CERTDIR=/certs

Docker拉取命令

docker pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/docker:20.10-linuxarm64
docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/docker:20.10-linuxarm64  docker.io/docker:20.10

Containerd拉取命令

ctr images pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/docker:20.10-linuxarm64
ctr images tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/docker:20.10-linuxarm64  docker.io/docker:20.10

Shell快速替换命令

sed -i 's#docker:20.10#swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/docker:20.10-linuxarm64#' deployment.yaml

Ansible快速分发-Docker

#ansible k8s -m shell -a 'docker pull swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/docker:20.10-linuxarm64 && docker tag  swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/docker:20.10-linuxarm64  docker.io/docker:20.10'

Ansible快速分发-Containerd

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

镜像构建历史


# 2023-05-10 18:04:23  0.00B 设置默认要执行的命令
CMD ["sh"]
                        
# 2023-05-10 18:04:23  0.00B 配置容器启动时运行的命令
ENTRYPOINT ["docker-entrypoint.sh"]
                        
# 2023-05-10 18:04:23  0.00B 执行命令并创建新的镜像层
RUN /bin/sh -c mkdir /certs /certs/client && chmod 1777 /certs /certs/client # buildkit
                        
# 2023-05-10 18:04:23  0.00B 设置环境变量 DOCKER_TLS_CERTDIR
ENV DOCKER_TLS_CERTDIR=/certs
                        
# 2023-05-10 18:04:23  1.85KB 复制新文件或目录到容器中
COPY docker-entrypoint.sh /usr/local/bin/ # buildkit
                        
# 2023-05-10 18:04:23  587.00B 复制新文件或目录到容器中
COPY modprobe.sh /usr/local/bin/modprobe # buildkit
                        
# 2023-05-10 18:04:23  52.21MB 执行命令并创建新的镜像层
RUN /bin/sh -c set -eux; 		apkArch="$(apk --print-arch)"; 	case "$apkArch" in 		'x86_64') 			url='https://github.com/docker/compose/releases/download/v2.17.3/docker-compose-linux-x86_64'; 			sha256='6abb771a438b8ef82b0ff0ef0e2e404032699104c3c40c59cd174b56214876c3'; 			;; 		'armhf') 			url='https://github.com/docker/compose/releases/download/v2.17.3/docker-compose-linux-armv6'; 			sha256='e8c20e7e02faa623839ccb2af725ae0b343eafaf836b2386579e35c598d7468a'; 			;; 		'armv7') 			url='https://github.com/docker/compose/releases/download/v2.17.3/docker-compose-linux-armv7'; 			sha256='72c26a8ab6a519bd9c645a314d6ed33ed694efeda3f787123806990124446fe8'; 			;; 		'aarch64') 			url='https://github.com/docker/compose/releases/download/v2.17.3/docker-compose-linux-aarch64'; 			sha256='07bdced6f502ab24b481f46aa6b205f97e2256e5cb11279648ac9c088220a38d'; 			;; 		'ppc64le') 			url='https://github.com/docker/compose/releases/download/v2.17.3/docker-compose-linux-ppc64le'; 			sha256='06075ea6594e42fd62360c029ed2b7cf294e8a50428cc3c8f0e022a68f672660'; 			;; 		'riscv64') 			url='https://github.com/docker/compose/releases/download/v2.17.3/docker-compose-linux-riscv64'; 			sha256='51c3e1b631be5845aecc9a66d4d0525c94dfec4d20a4ccf535a7f960f780e9f2'; 			;; 		's390x') 			url='https://github.com/docker/compose/releases/download/v2.17.3/docker-compose-linux-s390x'; 			sha256='666a07a5605e985ac96608a315cdae8151e72196733147dd81b61dd42c0777fe'; 			;; 		*) echo >&2 "warning: unsupported 'docker-compose' architecture ($apkArch); skipping"; exit 0 ;; 	esac; 		wget -O 'docker-compose' "$url"; 	echo "$sha256 *"'docker-compose' | sha256sum -c -; 		plugin='/usr/local/libexec/docker/cli-plugins/docker-compose'; 	mkdir -p "$(dirname "$plugin")"; 	mv -vT 'docker-compose' "$plugin"; 	chmod +x "$plugin"; 		ln -sv "$plugin" /usr/local/bin/; 	docker-compose --version; 	docker compose version # buildkit
                        
# 2023-05-10 18:04:23  0.00B 设置环境变量 DOCKER_COMPOSE_VERSION
ENV DOCKER_COMPOSE_VERSION=2.17.3
                        
# 2023-05-10 18:04:23  47.58MB 执行命令并创建新的镜像层
RUN /bin/sh -c set -eux; 		apkArch="$(apk --print-arch)"; 	case "$apkArch" in 		'x86_64') 			url='https://github.com/docker/buildx/releases/download/v0.10.4/buildx-v0.10.4.linux-amd64'; 			sha256='dbe68cdc537d0150fc83e3f30974cd0ca11c179dafbf27f32d6f063be26e869b'; 			;; 		'armhf') 			url='https://github.com/docker/buildx/releases/download/v0.10.4/buildx-v0.10.4.linux-arm-v6'; 			sha256='d50aa01a22a53e5a0eae9918274c9931b813b5336c0e30061a6b1904efb0c5eb'; 			;; 		'armv7') 			url='https://github.com/docker/buildx/releases/download/v0.10.4/buildx-v0.10.4.linux-arm-v7'; 			sha256='aabc8cef5b9221ecbcb0af9846004a30591540be8668504d70814efe870448c8'; 			;; 		'aarch64') 			url='https://github.com/docker/buildx/releases/download/v0.10.4/buildx-v0.10.4.linux-arm64'; 			sha256='e8f666134cf4aa83ec2b1b6afef0c83b1ea1387984d7a40ae6657b7da4d82d91'; 			;; 		'ppc64le') 			url='https://github.com/docker/buildx/releases/download/v0.10.4/buildx-v0.10.4.linux-ppc64le'; 			sha256='d107178f36e6c83286f3f9316e2f66b18f08306570cef209cb5840c880bd91ae'; 			;; 		'riscv64') 			url='https://github.com/docker/buildx/releases/download/v0.10.4/buildx-v0.10.4.linux-riscv64'; 			sha256='393db8518aeb442d0ca5f3ccf4800622dfc5eb8993c29bbfccb023cbfde6cdbc'; 			;; 		's390x') 			url='https://github.com/docker/buildx/releases/download/v0.10.4/buildx-v0.10.4.linux-s390x'; 			sha256='16ce9071c14293640e9bcd547ff01578c65cfc68fc6c154091abd81daaf10929'; 			;; 		*) echo >&2 "warning: unsupported 'docker-buildx' architecture ($apkArch); skipping"; exit 0 ;; 	esac; 		wget -O 'docker-buildx' "$url"; 	echo "$sha256 *"'docker-buildx' | sha256sum -c -; 		plugin='/usr/local/libexec/docker/cli-plugins/docker-buildx'; 	mkdir -p "$(dirname "$plugin")"; 	mv -vT 'docker-buildx' "$plugin"; 	chmod +x "$plugin"; 		docker buildx version # buildkit
                        
# 2023-05-10 18:04:23  0.00B 设置环境变量 DOCKER_BUILDX_VERSION
ENV DOCKER_BUILDX_VERSION=0.10.4
                        
# 2023-05-10 18:04:23  46.20MB 执行命令并创建新的镜像层
RUN /bin/sh -c set -eux; 		apkArch="$(apk --print-arch)"; 	case "$apkArch" in 		'x86_64') 			url='https://download.docker.com/linux/static/stable/x86_64/docker-20.10.24.tgz'; 			;; 		'armhf') 			url='https://download.docker.com/linux/static/stable/armel/docker-20.10.24.tgz'; 			;; 		'armv7') 			url='https://download.docker.com/linux/static/stable/armhf/docker-20.10.24.tgz'; 			;; 		'aarch64') 			url='https://download.docker.com/linux/static/stable/aarch64/docker-20.10.24.tgz'; 			;; 		*) echo >&2 "error: unsupported 'docker.tgz' architecture ($apkArch)"; exit 1 ;; 	esac; 		wget -O 'docker.tgz' "$url"; 		tar --extract 		--file docker.tgz 		--strip-components 1 		--directory /usr/local/bin/ 		--no-same-owner 		'docker/docker' 	; 	rm docker.tgz; 		docker --version # buildkit
                        
# 2023-05-10 18:04:23  0.00B 设置环境变量 DOCKER_VERSION
ENV DOCKER_VERSION=20.10.24
                        
# 2023-05-10 18:04:23  0.00B 执行命令并创建新的镜像层
RUN /bin/sh -c [ -e /etc/nsswitch.conf ] && grep '^hosts: files dns' /etc/nsswitch.conf # buildkit
                        
# 2023-05-10 18:04:23  6.19MB 执行命令并创建新的镜像层
RUN /bin/sh -c apk add --no-cache 		ca-certificates 		libc6-compat 		openssh-client # buildkit
                        
# 2023-05-10 07:11:08  0.00B 
/bin/sh -c #(nop)  CMD ["/bin/sh"]
                        
# 2023-05-10 07:11:08  7.73MB 
/bin/sh -c #(nop) ADD file:df7fccc3453b6ec1401d27a1295b0882a83e731fde8f23db9d3f687a2b6b4e70 in / 
                        
                    

镜像信息

{
    "Id": "sha256:3c01dfae9fd65cdb2c4a1a1555361e1a548603c4a24cbc4e19ce530971d54dca",
    "RepoTags": [
        "docker:20.10",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/docker:20.10-linuxarm64"
    ],
    "RepoDigests": [
        "docker@sha256:2967f0819c84dd589ed0a023b9d25dcfe7a3c123d5bf784ffbb77edf55335f0c",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/docker@sha256:d1b70e7d1329eef4c9541c6cd36a0ad39cfaf1adc0119a6fb7f6668d93ae0475"
    ],
    "Parent": "",
    "Comment": "buildkit.dockerfile.v0",
    "Created": "2023-05-10T10:04:23Z",
    "Container": "",
    "ContainerConfig": null,
    "DockerVersion": "",
    "Author": "",
    "Config": {
        "Hostname": "",
        "Domainname": "",
        "User": "",
        "AttachStdin": false,
        "AttachStdout": false,
        "AttachStderr": false,
        "Tty": false,
        "OpenStdin": false,
        "StdinOnce": false,
        "Env": [
            "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin",
            "DOCKER_VERSION=20.10.24",
            "DOCKER_BUILDX_VERSION=0.10.4",
            "DOCKER_COMPOSE_VERSION=2.17.3",
            "DOCKER_TLS_CERTDIR=/certs"
        ],
        "Cmd": [
            "sh"
        ],
        "ArgsEscaped": true,
        "Image": "",
        "Volumes": null,
        "WorkingDir": "",
        "Entrypoint": [
            "docker-entrypoint.sh"
        ],
        "OnBuild": null,
        "Labels": null
    },
    "Architecture": "arm64",
    "Variant": "v8",
    "Os": "linux",
    "Size": 159903011,
    "GraphDriver": {
        "Data": {
            "LowerDir": "/var/lib/docker/overlay2/bd7bdb4493821cea726a76a86fea88169f396df476a2170c8aa588f2d3e37a36/diff:/var/lib/docker/overlay2/7479b701befa5528479c1463e2ddd40411084076c6a65219c0055b1ef399a878/diff:/var/lib/docker/overlay2/a6010106ee5d46aa938004b42def2d29985af0b6ea706534b29d59eeb8b662b0/diff:/var/lib/docker/overlay2/f43dc14ea4efe09396e4b1f3becdbc8652c819ea5ef02b20d203ee0ae6b1f35d/diff:/var/lib/docker/overlay2/59082dfa5c11e016989f8eff89c073ce03a1465669412b151aedff5f61f207fe/diff:/var/lib/docker/overlay2/c28c263faf719009f7f1b7b10ac91da395ab587dc1da25050ec051482521e3ea/diff:/var/lib/docker/overlay2/bb6a620341220602c9f9dbd852c8656c8aaa9e23b43c376cc4f75d5111b10db2/diff:/var/lib/docker/overlay2/5c0982105fe5cf546acbc37e11c93d65a7e1ae9e6f409f155b1c72516e8c1b95/diff",
            "MergedDir": "/var/lib/docker/overlay2/4e4513e941348013e20adfd4854bcdbd9f56c37252a1958ab45f0341d46da7e5/merged",
            "UpperDir": "/var/lib/docker/overlay2/4e4513e941348013e20adfd4854bcdbd9f56c37252a1958ab45f0341d46da7e5/diff",
            "WorkDir": "/var/lib/docker/overlay2/4e4513e941348013e20adfd4854bcdbd9f56c37252a1958ab45f0341d46da7e5/work"
        },
        "Name": "overlay2"
    },
    "RootFS": {
        "Type": "layers",
        "Layers": [
            "sha256:94dd7d531fa5695c0c033dcb69f213c2b4c3b5a3ae6e497252ba88da87169c3f",
            "sha256:48d2feae68ae687395a70987eb40c106e5395c930e8b05cbd5ea026836533bfd",
            "sha256:4565e38b6aa247a394a0d5790c3eba2ec138e6a7a657aa3676441b45e1ebe033",
            "sha256:ce9a965a5046b728b7a7c63454c34476514952e75e349b8da3149ef5b2cde6e2",
            "sha256:9e873e25fb13e170ed088086f15cb96d4248f5272bf54596b1c8b53772bbb0ef",
            "sha256:6922f3e9c188a12519476da8e33a338fe27957c8aefa99195a32f72cda461bf1",
            "sha256:372ab73d2db7ce732de750d91cbddb97322ba1f58afcb6e62777dfd8b3d43b62",
            "sha256:6d6814973d98f77dee067cb1dbe7399e710643dc9320efb6975abb770c68996e",
            "sha256:a41b0d75bec409be8f12adb126e919fab1705c67202ff53acd0d1b01daa0cd54"
        ]
    },
    "Metadata": {
        "LastTagTime": "2025-10-29T17:42:35.243206498+08:00"
    }
}

更多版本

docker.io/docker.elastic.co/beats/filebeat:7.17.2

linux/amd64 docker.io270.99MB2024-08-01 17:16
643

docker.io/docker.elastic.co/beats/filebeat:7.17.12

linux/amd64 docker.io268.85MB2024-08-01 17:18
449

docker.io/docker:stable-dind

linux/amd64 docker.io234.92MB2024-08-21 17:42
481

docker.io/docker:19.03

linux/amd64 docker.io219.96MB2024-09-05 14:47
585

docker.io/docker.getcollate.io/openmetadata/ingestion:1.5.5

linux/amd64 docker.io4.60GB2024-10-10 09:58
323

docker.io/docker/dockerfile:1

linux/amd64 docker.io24.82MB2024-10-10 15:39
414

docker.io/docker.getcollate.io/openmetadata/ingestion:1.5.2

linux/amd64 docker.io4.60GB2024-10-12 09:37
234

docker.io/docker:dind

linux/amd64 docker.io365.99MB2024-10-12 19:31
464

docker.io/docker.elastic.co/beats/filebeat:7.17.3

linux/amd64 docker.io271.31MB2024-10-31 13:30
508

docker.io/docker.getcollate.io/openmetadata/db:1.5.2

linux/amd64 docker.io495.92MB2024-11-08 11:27
232

docker.io/docker.getcollate.io/openmetadata/server:1.5.2

linux/amd64 docker.io469.65MB2024-11-08 11:29
312

docker.io/docker.getcollate.io/openmetadata/server:1.5.10

linux/amd64 docker.io475.96MB2024-11-15 13:49
262

docker.io/docker.getcollate.io/openmetadata/ingestion:1.5.10

linux/amd64 docker.io4.52GB2024-11-16 22:38
314

docker.io/docker.getcollate.io/openmetadata/db:1.5.5

linux/amd64 docker.io495.92MB2024-11-20 15:12
211

docker.io/docker:24.0.6-dind

linux/amd64 docker.io331.42MB2024-12-03 14:15
240

docker.io/docker:24.0.6

linux/amd64 docker.io331.42MB2024-12-04 13:27
343

docker.io/docker/compose:1.29.2

linux/amd64 docker.io76.19MB2024-12-07 16:53
495

docker.io/docker:27.4.0-dind

linux/amd64 docker.io369.34MB2024-12-12 11:14
256

docker.io/docker:27

linux/amd64 docker.io369.34MB2024-12-12 16:02
235

docker.io/docker:27.4.0

linux/amd64 docker.io369.34MB2024-12-12 16:04
355

docker.io/docker:25.0.2-dind

linux/amd64 docker.io337.94MB2024-12-21 08:06
330

docker.io/docker/dockerfile:1.4

linux/amd64 docker.io20.63MB2024-12-23 12:31
437

docker.io/dockeruserdou/oom-py:latest

linux/amd64 docker.io1.01GB2024-12-26 10:48
181

docker.io/docker/getting-started:latest

linux/amd64 docker.io46.96MB2025-01-16 16:36
218

docker.io/dockeruserdou/controller:latest

linux/amd64 docker.io72.53MB2025-02-26 17:53
263

docker.io/dockeruserdou/controller:v1

linux/amd64 docker.io72.35MB2025-02-27 16:02
177

docker.io/docker.elastic.co/kibana/kibana:8.15.3

linux/amd64 docker.io1.14GB2025-02-28 12:48
276

docker.io/docker.elastic.co/beats/filebeat:8.13.3

linux/amd64 docker.io331.66MB2025-02-28 13:40
185

docker.io/docker.elastic.co/beats/filebeat:8.15.3

linux/amd64 docker.io348.32MB2025-02-28 13:43
192

docker.io/docker.elastic.co/logstash/logstash:8.15.3

linux/amd64 docker.io871.65MB2025-02-28 13:49
239

docker.io/docker.elastic.co/logstash/logstash:8.13.3

linux/amd64 docker.io855.99MB2025-02-28 13:57
212

docker.io/dockeruserdou/node-cache:v1

linux/amd64 docker.io135.40MB2025-03-04 12:10
208

docker.io/docker.elastic.co/kibana/kibana:7.16.2

linux/amd64 docker.io1.30GB2025-03-13 22:41
167

docker.io/docker.getcollate.io/openmetadata/db:1.6.6

linux/amd64 docker.io495.92MB2025-03-19 16:42
276

docker.io/docker.getcollate.io/openmetadata/server:1.6.6

linux/amd64 docker.io465.59MB2025-03-19 16:46
234

docker.io/docker.getcollate.io/openmetadata/ingestion:1.6.6

linux/amd64 docker.io4.51GB2025-03-19 16:53
210

docker.io/docker/dockerfile:1.4

linux/arm64 docker.io20.28MB2025-03-28 00:15
150

docker.io/docker/desktop-storage-provisioner:v2.0

linux/amd64 docker.io41.85MB2025-04-06 13:45
181

docker.io/docker.getcollate.io/openmetadata/server:1.7.0

linux/amd64 docker.io472.71MB2025-05-09 11:54
324

docker.io/docker.getcollate.io/openmetadata/ingestion:1.7.0

linux/amd64 docker.io4.53GB2025-05-09 12:09
290

docker.io/docker.getcollate.io/openmetadata/db:1.7.0

linux/amd64 docker.io495.92MB2025-05-09 12:11
260

docker.io/docker.gitea.com/runner-images:ubuntu-latest

linux/amd64 docker.io1.60GB2025-05-16 11:14
164

docker.io/docker:18.06.3

linux/amd64 docker.io153.17MB2025-05-23 09:43
194

docker.io/docker.getcollate.io/openmetadata/db:1.7.1

linux/amd64 docker.io495.92MB2025-05-30 11:47
140

docker.io/docker:24.0.9

linux/amd64 docker.io350.27MB2025-06-09 11:21
264

docker.io/docker.elastic.co/elasticsearch/elasticsearch:7.17.28

linux/amd64 docker.io650.71MB2025-06-16 16:00
179

docker.io/docker/dockerfile:1.2

linux/arm64 docker.io19.50MB2025-07-03 19:27
95

docker.io/docker.miaixz.com/langgenius/ecovacs-dify-api:1.4.3.1

linux/amd64 docker.io1.92GB2025-07-08 15:03
133

docker.io/docker/dockerfile:experimental

linux/amd64 docker.io20.43MB2025-07-08 15:19
150

docker.io/docker:28-rc-dind

linux/arm64 docker.io404.79MB2025-07-09 08:42
116

docker.io/docker.elastic.co/logstash/logstash:9.0.2

linux/amd64 docker.io838.96MB2025-07-09 17:05
157

docker.io/docker.elastic.co/kibana/kibana:9.0.2

linux/amd64 docker.io1.28GB2025-07-09 17:09
194

docker.io/docker/dockerfile:1-labs

linux/amd64 docker.io27.89MB2025-07-10 17:40
144

docker.io/docker:24-cli

linux/amd64 docker.io179.66MB2025-08-01 16:46
128

docker.io/docker/mcp-gateway:v2

linux/amd64 docker.io77.38MB2025-08-06 15:38
175

docker.io/docker:cli

linux/amd64 docker.io213.21MB2025-09-03 18:58
88

docker.io/docker:20.10.16-dind

linux/amd64 docker.io311.64MB2025-09-05 10:14
89

docker.io/docker.stirlingpdf.com/stirlingtools/stirling-pdf:latest

linux/amd64 docker.io2.09GB2025-09-10 17:20
113

docker.io/docker:20.10

linux/arm64 docker.io159.90MB2025-10-29 17:42
16

docker.io/docker/desktop-containerd-registry-mirror:v0.0.2

linux/amd64 docker.io29.83MB2025-10-30 19:09
13