docker.io/docker:27-dind linux/amd64

docker.io/docker:27-dind - 国内下载镜像源 浏览次数:12
docker.io/docker

官方 Docker 镜像

源镜像 docker.io/docker:27-dind
国内镜像 swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/docker:27-dind
镜像ID sha256:d2dc198f7d839eae26b5a9cb0e7cdc4e2c97d9cb4ea66dbeb0a4c0c7f0b165f8
镜像TAG 27-dind
大小 387.16MB
镜像源 docker.io
项目信息 Docker-Hub主页 🚀项目TAG 🚀
CMD
启动入口 dockerd-entrypoint.sh
工作目录 /
OS/平台 linux/amd64
浏览量 12 次
贡献者
镜像创建 2025-02-02T00:04:18Z
同步时间 2026-01-13 14:32
更新时间 2026-01-13 16:47
开放端口
2375/tcp 2376/tcp
目录挂载
/var/lib/docker
环境变量
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin DOCKER_VERSION=27.5.1 DOCKER_BUILDX_VERSION=0.20.1 DOCKER_COMPOSE_VERSION=2.33.0 DOCKER_TLS_CERTDIR=/certs DIND_COMMIT=c43aa0b6aa7c88343f0951ba9a39c69aa51c54ef

Docker拉取命令

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

Containerd拉取命令

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

Shell快速替换命令

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

Ansible快速分发-Docker

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

Ansible快速分发-Containerd

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

镜像构建历史


# 2025-02-02 08:04:18  0.00B 设置默认要执行的命令
CMD []
                        
# 2025-02-02 08:04:18  0.00B 配置容器启动时运行的命令
ENTRYPOINT ["dockerd-entrypoint.sh"]
                        
# 2025-02-02 08:04:18  0.00B 声明容器运行时监听的端口
EXPOSE map[2375/tcp:{} 2376/tcp:{}]
                        
# 2025-02-02 08:04:18  0.00B 创建挂载点用于持久化数据或共享数据
VOLUME [/var/lib/docker]
                        
# 2025-02-02 08:04:18  8.99KB 复制新文件或目录到容器中
COPY dockerd-entrypoint.sh /usr/local/bin/ # buildkit
                        
# 2025-02-02 08:04:18  3.29KB 执行命令并创建新的镜像层
RUN /bin/sh -c set -eux; 	wget -O /usr/local/bin/dind "https://raw.githubusercontent.com/docker/docker/${DIND_COMMIT}/hack/dind"; 	chmod +x /usr/local/bin/dind # buildkit
                        
# 2025-02-02 08:04:18  0.00B 设置环境变量 DIND_COMMIT
ENV DIND_COMMIT=c43aa0b6aa7c88343f0951ba9a39c69aa51c54ef
                        
# 2025-02-02 08:04:18  165.29MB 执行命令并创建新的镜像层
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-27.5.1.tgz'; 			;; 		'armhf') 			url='https://download.docker.com/linux/static/stable/armel/docker-27.5.1.tgz'; 			;; 		'armv7') 			url='https://download.docker.com/linux/static/stable/armhf/docker-27.5.1.tgz'; 			;; 		'aarch64') 			url='https://download.docker.com/linux/static/stable/aarch64/docker-27.5.1.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 		--exclude 'docker/docker' 	; 	rm docker.tgz; 		dockerd --version; 	containerd --version; 	ctr --version; 	runc --version # buildkit
                        
# 2025-02-02 08:04:18  3.15KB 执行命令并创建新的镜像层
RUN /bin/sh -c set -eux; 	addgroup -S dockremap; 	adduser -S -G dockremap dockremap; 	echo 'dockremap:165536:65536' >> /etc/subuid; 	echo 'dockremap:165536:65536' >> /etc/subgid # buildkit
                        
# 2025-02-02 08:04:18  252.85KB 执行命令并创建新的镜像层
RUN /bin/sh -c set -eux; 	apk add --no-cache iptables-legacy; 	mkdir -p /usr/local/sbin/.iptables-legacy; 	for f in 		iptables 		iptables-save 		iptables-restore 		ip6tables 		ip6tables-save 		ip6tables-restore 	; do 		b="$(command -v "${f/tables/tables-legacy}")"; 		"$b" --version; 		ln -svT "$b" "/usr/local/sbin/.iptables-legacy/$f"; 	done; 	export PATH="/usr/local/sbin/.iptables-legacy:$PATH"; 	iptables --version | grep legacy # buildkit
                        
# 2025-02-02 08:04:18  17.45MB 执行命令并创建新的镜像层
RUN /bin/sh -c set -eux; 	apk add --no-cache 		btrfs-progs 		e2fsprogs 		e2fsprogs-extra 		git 		ip6tables 		iptables 		openssl 		pigz 		shadow-uidmap 		xfsprogs 		xz 		zfs 	; # buildkit
                        
# 2025-02-02 08:04:18  0.00B 设置默认要执行的命令
CMD ["sh"]
                        
# 2025-02-02 08:04:18  0.00B 配置容器启动时运行的命令
ENTRYPOINT ["docker-entrypoint.sh"]
                        
# 2025-02-02 08:04:18  0.00B 执行命令并创建新的镜像层
RUN /bin/sh -c mkdir /certs /certs/client && chmod 1777 /certs /certs/client # buildkit
                        
# 2025-02-02 08:04:18  0.00B 设置环境变量 DOCKER_TLS_CERTDIR
ENV DOCKER_TLS_CERTDIR=/certs
                        
# 2025-02-02 08:04:18  1.85KB 复制新文件或目录到容器中
COPY docker-entrypoint.sh /usr/local/bin/ # buildkit
                        
# 2025-02-02 08:04:18  587.00B 复制新文件或目录到容器中
COPY modprobe.sh /usr/local/bin/modprobe # buildkit
                        
# 2025-02-02 08:04:18  73.53MB 执行命令并创建新的镜像层
RUN /bin/sh -c set -eux; 		apkArch="$(apk --print-arch)"; 	case "$apkArch" in 		'x86_64') 			url='https://github.com/docker/compose/releases/download/v2.33.0/docker-compose-linux-x86_64'; 			sha256='6395dbb256db6ea28d5c6695bc9bc33866c07ad1c93792f8d85857f1c21c34ee'; 			;; 		'armhf') 			url='https://github.com/docker/compose/releases/download/v2.33.0/docker-compose-linux-armv6'; 			sha256='360976f92dbf4b575bb9beb2737952709c685d1441eebd90c7eeb63225a44ada'; 			;; 		'armv7') 			url='https://github.com/docker/compose/releases/download/v2.33.0/docker-compose-linux-armv7'; 			sha256='69c5e0b8764876ef7521b4274eba470d0d6686d3def74e2ba0c216bf2bf6f077'; 			;; 		'aarch64') 			url='https://github.com/docker/compose/releases/download/v2.33.0/docker-compose-linux-aarch64'; 			sha256='03a42a0fc0614ffc3c9ebca521cab75e02c427b68e45e3f6867d9510b9a28818'; 			;; 		'ppc64le') 			url='https://github.com/docker/compose/releases/download/v2.33.0/docker-compose-linux-ppc64le'; 			sha256='3e1c3ba91bbf27c0966ad384a96dbecb867c2cbda4fde929165ca35b99075023'; 			;; 		'riscv64') 			url='https://github.com/docker/compose/releases/download/v2.33.0/docker-compose-linux-riscv64'; 			sha256='dffcdfbc88189a97c0000d1995476fa6712396d1472d6fbe24bfb424f46da7c3'; 			;; 		's390x') 			url='https://github.com/docker/compose/releases/download/v2.33.0/docker-compose-linux-s390x'; 			sha256='3f809fd846e3e38bc3dcb88546f88141a68e1bb4578a74c71ed5b563f95a45bb'; 			;; 		*) 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
                        
# 2025-02-02 08:04:18  0.00B 设置环境变量 DOCKER_COMPOSE_VERSION
ENV DOCKER_COMPOSE_VERSION=2.33.0
                        
# 2025-02-02 08:04:18  65.24MB 执行命令并创建新的镜像层
RUN /bin/sh -c set -eux; 		apkArch="$(apk --print-arch)"; 	case "$apkArch" in 		'x86_64') 			url='https://github.com/docker/buildx/releases/download/v0.20.1/buildx-v0.20.1.linux-amd64'; 			sha256='8c38f60308a895fa570f1410e453c5de11aafd65a99fa99965d96d24b6225a78'; 			;; 		'armhf') 			url='https://github.com/docker/buildx/releases/download/v0.20.1/buildx-v0.20.1.linux-arm-v6'; 			sha256='ba0929f3389db9c407c23debb7c02faaf5e1d09da48c94905f0759736a39ee2f'; 			;; 		'armv7') 			url='https://github.com/docker/buildx/releases/download/v0.20.1/buildx-v0.20.1.linux-arm-v7'; 			sha256='52672d1810f359685c171e85f7c96f71e32aa5f170d7841b32282a8e3ba16fce'; 			;; 		'aarch64') 			url='https://github.com/docker/buildx/releases/download/v0.20.1/buildx-v0.20.1.linux-arm64'; 			sha256='f7d867e9f1a3c00b32dd580f56594e229df05e3fb1b083b7099c91c2e7d2ce1e'; 			;; 		'ppc64le') 			url='https://github.com/docker/buildx/releases/download/v0.20.1/buildx-v0.20.1.linux-ppc64le'; 			sha256='7bee10600a6fb9f01cecae11e92e5b5271a732e5641580037b7f74fb84c033ea'; 			;; 		'riscv64') 			url='https://github.com/docker/buildx/releases/download/v0.20.1/buildx-v0.20.1.linux-riscv64'; 			sha256='f4cf6e6a6f27e571e5210cf6324b720c10548b0a0b59e0b1381b43fde0604c65'; 			;; 		's390x') 			url='https://github.com/docker/buildx/releases/download/v0.20.1/buildx-v0.20.1.linux-s390x'; 			sha256='93d547dcecaeddd6fe6cc384110b532bf204126ef4ee3aa9ad9765c813a1b809'; 			;; 		*) 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
                        
# 2025-02-02 08:04:18  0.00B 设置环境变量 DOCKER_BUILDX_VERSION
ENV DOCKER_BUILDX_VERSION=0.20.1
                        
# 2025-02-02 08:04:18  40.35MB 执行命令并创建新的镜像层
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-27.5.1.tgz'; 			;; 		'armhf') 			url='https://download.docker.com/linux/static/stable/armel/docker-27.5.1.tgz'; 			;; 		'armv7') 			url='https://download.docker.com/linux/static/stable/armhf/docker-27.5.1.tgz'; 			;; 		'aarch64') 			url='https://download.docker.com/linux/static/stable/aarch64/docker-27.5.1.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
                        
# 2025-02-02 08:04:18  0.00B 设置环境变量 DOCKER_VERSION
ENV DOCKER_VERSION=27.5.1
                        
# 2025-02-02 08:04:18  1.03KB 执行命令并创建新的镜像层
RUN /bin/sh -c set -eux; 	addgroup -g 2375 -S docker # buildkit
                        
# 2025-02-02 08:04:18  0.00B 执行命令并创建新的镜像层
RUN /bin/sh -c [ -e /etc/nsswitch.conf ] && grep '^hosts: files dns' /etc/nsswitch.conf # buildkit
                        
# 2025-02-02 08:04:18  17.19MB 执行命令并创建新的镜像层
RUN /bin/sh -c apk add --no-cache 		ca-certificates 		openssh-client 		git # buildkit
                        
# 2025-02-02 08:04:18  0.00B 设置默认要执行的命令
CMD ["/bin/sh"]
                        
# 2025-02-02 08:04:18  7.83MB 复制文件或目录到容器中
ADD alpine-minirootfs-3.21.3-x86_64.tar.gz / # buildkit
                        
                    

镜像信息

{
    "Id": "sha256:d2dc198f7d839eae26b5a9cb0e7cdc4e2c97d9cb4ea66dbeb0a4c0c7f0b165f8",
    "RepoTags": [
        "docker:27-dind",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/docker:27-dind"
    ],
    "RepoDigests": [
        "docker@sha256:aa3df78ecf320f5fafdce71c659f1629e96e9de0968305fe1de670e0ca9176ce",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/docker@sha256:f00df8d4d128b6ffac96fce8e1589a3d41b6c9f2fc3f939d2c0671ef2b30a69b"
    ],
    "Parent": "",
    "Comment": "buildkit.dockerfile.v0",
    "Created": "2025-02-02T00:04:18Z",
    "Container": "",
    "ContainerConfig": null,
    "DockerVersion": "",
    "Author": "",
    "Config": {
        "Hostname": "",
        "Domainname": "",
        "User": "",
        "AttachStdin": false,
        "AttachStdout": false,
        "AttachStderr": false,
        "ExposedPorts": {
            "2375/tcp": {},
            "2376/tcp": {}
        },
        "Tty": false,
        "OpenStdin": false,
        "StdinOnce": false,
        "Env": [
            "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin",
            "DOCKER_VERSION=27.5.1",
            "DOCKER_BUILDX_VERSION=0.20.1",
            "DOCKER_COMPOSE_VERSION=2.33.0",
            "DOCKER_TLS_CERTDIR=/certs",
            "DIND_COMMIT=c43aa0b6aa7c88343f0951ba9a39c69aa51c54ef"
        ],
        "Cmd": null,
        "Image": "",
        "Volumes": {
            "/var/lib/docker": {}
        },
        "WorkingDir": "/",
        "Entrypoint": [
            "dockerd-entrypoint.sh"
        ],
        "OnBuild": null,
        "Labels": null
    },
    "Architecture": "amd64",
    "Os": "linux",
    "Size": 387158864,
    "GraphDriver": {
        "Data": {
            "LowerDir": "/var/lib/docker/overlay2/52ebd735d37b37a23cadc8c2cd8edffde845fe0c6179cdc8404640e8bc7c5fae/diff:/var/lib/docker/overlay2/b017c6c4f3a5548cc5915e434b57740be1f5cca3b6928f5f05e596ecac679b87/diff:/var/lib/docker/overlay2/b122e0d1b0e06af27a39864e5a1f5122ff1cc46d7584c2916d2dafcf32c31c89/diff:/var/lib/docker/overlay2/6396741caeb78371f6784611ac6b2ab9f18eccb4b1040bc8e97bcd65f52fbe0f/diff:/var/lib/docker/overlay2/4f5d40979ee20dd5c7dd54ffde73a1ca8a2375698dabae5c3833ed6c754c5c62/diff:/var/lib/docker/overlay2/1aa021992bdb2e3619085ffb82c05b0e133234da06bd69adc5f4cc35b4d056b9/diff:/var/lib/docker/overlay2/c92a097b1b17ed7b88aa3bd19285557ff6c8f06d4105fa22a518554e95c8e755/diff:/var/lib/docker/overlay2/3e40260508c3ce3bb9566bdfb9b3564074f7c313ffcd12bc7928c0497b57752a/diff:/var/lib/docker/overlay2/ea0509e2efa0db03798b47c908616d0087baeeb621e22c72489e43ea9f6424a7/diff:/var/lib/docker/overlay2/03566310d822f20d92a4da5b91d79bde54ccc71c3538e4e1f36cc60efa5b8dda/diff:/var/lib/docker/overlay2/74080d32adc4fe69d2cb1e0e480299081492d5a483aa71780b886f36d5d8161f/diff:/var/lib/docker/overlay2/d3cec227194cb251922e170cc35978f16b9e45e236ce0f12e517e3ca356ae136/diff:/var/lib/docker/overlay2/6c63cddc96338f8337c98c5d06239df4b8cf0625e5610e87e7174a99203ea307/diff:/var/lib/docker/overlay2/6b4f5d25edf81b2960a6a7307ab4bb4c6b2dbf071015642c9aef2e749581037c/diff:/var/lib/docker/overlay2/4e8c80c1de56b91b667718f35bdead0b4c91a2fdafbfe97c3c57654b169634d9/diff",
            "MergedDir": "/var/lib/docker/overlay2/2c5cd4c2d12f1f9bb929eb7d6efc5052d4b416650c2b2e1c8723fdc71011e488/merged",
            "UpperDir": "/var/lib/docker/overlay2/2c5cd4c2d12f1f9bb929eb7d6efc5052d4b416650c2b2e1c8723fdc71011e488/diff",
            "WorkDir": "/var/lib/docker/overlay2/2c5cd4c2d12f1f9bb929eb7d6efc5052d4b416650c2b2e1c8723fdc71011e488/work"
        },
        "Name": "overlay2"
    },
    "RootFS": {
        "Type": "layers",
        "Layers": [
            "sha256:08000c18d16dadf9553d747a58cf44023423a9ab010aab96cf263d2216b8b350",
            "sha256:1c1e542b1b5c3d5da819c486c5f7b29bac4b7c70dc33864aedc3eeb584b38550",
            "sha256:5f70bf18a086007016e948b04aed3b82103a36bea41755b6cddfaf10ace3c6ef",
            "sha256:b547cff5078c4804f5e0ecfaeed648f59562a982e7d488059951ae104c25fec6",
            "sha256:971c4df3b06b6e4a0fea0062f65eb3b1a3245f3116a18fbeec845a7c789c9512",
            "sha256:0bff5d9cecfd7ad052679d827e6eb865aef12d3b49625b8512d3328f90919af7",
            "sha256:b1a9e8e8863d4e79633f53ae640c007fe187b09474f40f7ad994e029a913af9a",
            "sha256:c66402fcf5906d8ae17f6f6e51646262bbbaa8caebddaa4d847de61e605ce328",
            "sha256:b9bbf53fe349aa9e487e2502c783ceab224bed27fb95f6db4a86001a4a61c0ad",
            "sha256:924c52a7b0863a6128779547800fe7e9f430df1cd0dc357a6cc781ab2988bf40",
            "sha256:21897cf451a22d47eb4780e253c6208b2c411a2b287677aa0b689294a271c3e1",
            "sha256:d87cdc4a8956104f2bd6dc1054e3f079e828394ebb9dc3faaea4d9b4e1241f22",
            "sha256:37b992857eecaadbf9a45b336076715725b3c0b6a00fd79db746f184e16dbd33",
            "sha256:a35619e9f9f9c79dd1407b4f99bc0d3d14b1f8618d0c4796bae667376dacd172",
            "sha256:750a9b2245cd271536c3eeefed6bf9ef6cdc31f1f3786fa3b85c27a14ef72bae",
            "sha256:bd3e3ddacb87a919f3d4ff30b1168618b76afcc213d57936e2a5df70fbff119c"
        ]
    },
    "Metadata": {
        "LastTagTime": "2026-01-13T14:32:57.572430057+08:00"
    }
}

更多版本

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

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

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

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

docker.io/docker:stable-dind

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

docker.io/docker:19.03

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

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

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

docker.io/docker/dockerfile:1

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

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

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

docker.io/docker:dind

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

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

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

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

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

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

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

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

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

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

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

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

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

docker.io/docker:24.0.6-dind

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

docker.io/docker:24.0.6

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

docker.io/docker/compose:1.29.2

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

docker.io/docker:27.4.0-dind

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

docker.io/docker:27

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

docker.io/docker:27.4.0

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

docker.io/docker:25.0.2-dind

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

docker.io/docker/dockerfile:1.4

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

docker.io/dockeruserdou/oom-py:latest

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

docker.io/docker/getting-started:latest

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

docker.io/dockeruserdou/controller:latest

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

docker.io/dockeruserdou/controller:v1

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

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

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

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

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

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

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

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

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

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

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

docker.io/dockeruserdou/node-cache:v1

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

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

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

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

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

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

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

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

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

docker.io/docker/dockerfile:1.4

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

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

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

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

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

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

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

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

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

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

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

docker.io/docker:18.06.3

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

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

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

docker.io/docker:24.0.9

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

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

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

docker.io/docker/dockerfile:1.2

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

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

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

docker.io/docker/dockerfile:experimental

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

docker.io/docker:28-rc-dind

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

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

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

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

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

docker.io/docker/dockerfile:1-labs

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

docker.io/docker:24-cli

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

docker.io/docker/mcp-gateway:v2

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

docker.io/docker:cli

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

docker.io/docker:20.10.16-dind

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

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

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

docker.io/docker:20.10

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

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

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

docker.io/docker/dockerfile:1.14

linux/amd64 docker.io25.94MB2025-11-04 14:23
106

docker.io/docker/dockerfile:1.14

linux/arm64 docker.io25.17MB2025-11-04 15:06
93

docker.io/docker:20.10.16

linux/amd64 docker.io293.73MB2025-11-18 16:49
160

docker.io/docker/desktop-cloud-provider-kind:v0.3.0-desktop.3

linux/amd64 docker.io421.92MB2025-11-18 23:35
103

docker.io/dockereng/awscli:1.16.156

linux/amd64 docker.io113.28MB2025-11-19 21:17
83

docker.io/docker:24.0.7-dind

linux/amd64 docker.io337.40MB2025-11-26 16:58
99

docker.io/docker:24.0.7-cli

linux/amd64 docker.io161.90MB2025-11-26 17:01
125

docker.io/docker/dockerfile:1.6

linux/arm64 docker.io22.62MB2025-12-01 15:17
76

docker.io/docker/model-runner:latest-cuda

linux/amd64 docker.io3.93GB2025-12-03 01:27
100

docker.io/docker.umami.is/umami-software/umami:postgresql-latest

linux/amd64 docker.io779.25MB2025-12-08 10:57
82

docker.io/docker:latest

linux/arm64 docker.io362.89MB2025-12-16 10:31
110

docker.io/docker:29.1.3-dind

linux/amd64 docker.io368.79MB2025-12-17 13:54
89

docker.io/docker:29.1.3

linux/amd64 docker.io368.79MB2025-12-17 13:55
226

docker.io/docker/dockerfile:1.6

linux/amd64 docker.io23.60MB2025-12-19 14:14
69

docker.io/docker/dockerfile:1.8.1

linux/amd64 docker.io24.02MB2025-12-25 15:00
56

docker.io/docker/dockerfile:1.20

linux/amd64 docker.io27.73MB2025-12-25 18:27
58

docker.io/docker/dockerfile:1.10

linux/amd64 docker.io24.82MB2026-01-07 13:50
30

docker.io/docker/dockerfile:1.6.0

linux/amd64 docker.io23.60MB2026-01-08 08:51
25

docker.io/docker:27-dind

linux/amd64 docker.io387.16MB2026-01-13 14:32
11