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

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

官方 Docker 镜像

源镜像 docker.io/docker:26.1.4-dind
国内镜像 swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/docker:26.1.4-dind
镜像ID sha256:ecaee68599b0237bdb13f87d0adf5ae8c2d14b30f3a801d3d863745ecdd47580
镜像TAG 26.1.4-dind
大小 361.20MB
镜像源 docker.io
项目信息 Docker-Hub主页 🚀项目TAG 🚀
CMD
启动入口 dockerd-entrypoint.sh
工作目录
OS/平台 linux/amd64
浏览量 13 次
贡献者 12*******2@qq.com
镜像创建 2024-06-19T00:17:01Z
同步时间 2026-01-14 18:38
更新时间 2026-01-15 01:39
开放端口
2375/tcp 2376/tcp
目录挂载
/var/lib/docker
环境变量
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin DOCKER_VERSION=26.1.4 DOCKER_BUILDX_VERSION=0.16.1 DOCKER_COMPOSE_VERSION=2.29.1 DOCKER_TLS_CERTDIR=/certs DIND_COMMIT=65cfcc28ab37cb75e1560e4b4738719c07c6618e

Docker拉取命令

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

Containerd拉取命令

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

Shell快速替换命令

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

Ansible快速分发-Docker

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

Ansible快速分发-Containerd

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

镜像构建历史


# 2024-06-19 08:17:01  0.00B 设置默认要执行的命令
CMD []
                        
# 2024-06-19 08:17:01  0.00B 配置容器启动时运行的命令
ENTRYPOINT ["dockerd-entrypoint.sh"]
                        
# 2024-06-19 08:17:01  0.00B 声明容器运行时监听的端口
EXPOSE map[2375/tcp:{} 2376/tcp:{}]
                        
# 2024-06-19 08:17:01  0.00B 创建挂载点用于持久化数据或共享数据
VOLUME [/var/lib/docker]
                        
# 2024-06-19 08:17:01  8.99KB 复制新文件或目录到容器中
COPY dockerd-entrypoint.sh /usr/local/bin/ # buildkit
                        
# 2024-06-19 08:17:01  2.86KB 执行命令并创建新的镜像层
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
                        
# 2024-06-19 08:17:01  0.00B 设置环境变量 DIND_COMMIT
ENV DIND_COMMIT=65cfcc28ab37cb75e1560e4b4738719c07c6618e
                        
# 2024-06-19 08:17:01  160.28MB 执行命令并创建新的镜像层
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-26.1.4.tgz'; 			;; 		'armhf') 			url='https://download.docker.com/linux/static/stable/armel/docker-26.1.4.tgz'; 			;; 		'armv7') 			url='https://download.docker.com/linux/static/stable/armhf/docker-26.1.4.tgz'; 			;; 		'aarch64') 			url='https://download.docker.com/linux/static/stable/aarch64/docker-26.1.4.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
                        
# 2024-06-19 08:17:01  3.16KB 执行命令并创建新的镜像层
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
                        
# 2024-06-19 08:17:01  251.62KB 执行命令并创建新的镜像层
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="/sbin/${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
                        
# 2024-06-19 08:17:01  17.34MB 执行命令并创建新的镜像层
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
                        
# 2024-06-19 08:17:01  0.00B 设置默认要执行的命令
CMD ["sh"]
                        
# 2024-06-19 08:17:01  0.00B 配置容器启动时运行的命令
ENTRYPOINT ["docker-entrypoint.sh"]
                        
# 2024-06-19 08:17:01  0.00B 执行命令并创建新的镜像层
RUN /bin/sh -c mkdir /certs /certs/client && chmod 1777 /certs /certs/client # buildkit
                        
# 2024-06-19 08:17:01  0.00B 设置环境变量 DOCKER_TLS_CERTDIR
ENV DOCKER_TLS_CERTDIR=/certs
                        
# 2024-06-19 08:17:01  1.85KB 复制新文件或目录到容器中
COPY docker-entrypoint.sh /usr/local/bin/ # buildkit
                        
# 2024-06-19 08:17:01  587.00B 复制新文件或目录到容器中
COPY modprobe.sh /usr/local/bin/modprobe # buildkit
                        
# 2024-06-19 08:17:01  63.16MB 执行命令并创建新的镜像层
RUN /bin/sh -c set -eux; 		apkArch="$(apk --print-arch)"; 	case "$apkArch" in 		'x86_64') 			url='https://github.com/docker/compose/releases/download/v2.29.1/docker-compose-linux-x86_64'; 			sha256='5ea89dd65d33912a83737d8a4bf070d5de534a32b8493a21fbefc924484786a9'; 			;; 		'armhf') 			url='https://github.com/docker/compose/releases/download/v2.29.1/docker-compose-linux-armv6'; 			sha256='5fdd0653bb04798f1448bd5bdbecea02bcf39247fcc9b8aab10c05c8e680ede0'; 			;; 		'armv7') 			url='https://github.com/docker/compose/releases/download/v2.29.1/docker-compose-linux-armv7'; 			sha256='0d675f39b3089050d0630a7151580a58abc6c189e64209c6403598b6e9fc0b21'; 			;; 		'aarch64') 			url='https://github.com/docker/compose/releases/download/v2.29.1/docker-compose-linux-aarch64'; 			sha256='7f0023ba726b90347e4ebc1d94ec5970390b8bddb86402c0429f163dca70d745'; 			;; 		'ppc64le') 			url='https://github.com/docker/compose/releases/download/v2.29.1/docker-compose-linux-ppc64le'; 			sha256='9d69aae252fa7fd3a234647951b2af496ee927134d5456d4b8bac31d4d260f5d'; 			;; 		'riscv64') 			url='https://github.com/docker/compose/releases/download/v2.29.1/docker-compose-linux-riscv64'; 			sha256='91b6b2f56e8cba3965a5409fa5125d3f01408c9b2d0bf5b9c119f353601d1e51'; 			;; 		's390x') 			url='https://github.com/docker/compose/releases/download/v2.29.1/docker-compose-linux-s390x'; 			sha256='1ea22d04bab9452de3169e22b60d77a232acdf829ac4858dc780085dd7fd4c48'; 			;; 		*) 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
                        
# 2024-06-19 08:17:01  0.00B 设置环境变量 DOCKER_COMPOSE_VERSION
ENV DOCKER_COMPOSE_VERSION=2.29.1
                        
# 2024-06-19 08:17:01  57.04MB 执行命令并创建新的镜像层
RUN /bin/sh -c set -eux; 		apkArch="$(apk --print-arch)"; 	case "$apkArch" in 		'x86_64') 			url='https://github.com/docker/buildx/releases/download/v0.16.1/buildx-v0.16.1.linux-amd64'; 			sha256='62c2cb471c765b48a2b6fd0c09c8149b789695eb631bc1b7b60c047f75907f3f'; 			;; 		'armhf') 			url='https://github.com/docker/buildx/releases/download/v0.16.1/buildx-v0.16.1.linux-arm-v6'; 			sha256='e8092bdfe77337b27d963d5a0090b7be73e293e1c59ff0ceaac560b749fe42ba'; 			;; 		'armv7') 			url='https://github.com/docker/buildx/releases/download/v0.16.1/buildx-v0.16.1.linux-arm-v7'; 			sha256='8acad24cbefa6e8614c55fed2ac5c822303647563a4e14019eb9e8907ac02b5b'; 			;; 		'aarch64') 			url='https://github.com/docker/buildx/releases/download/v0.16.1/buildx-v0.16.1.linux-arm64'; 			sha256='024f62e6bcd20d29f9ab45ecb49963f93311991465dddc62b8d8a32443aa36ce'; 			;; 		'ppc64le') 			url='https://github.com/docker/buildx/releases/download/v0.16.1/buildx-v0.16.1.linux-ppc64le'; 			sha256='328dc59f720f59aef58af35af3202a479bac7ccbb8c02fd9db60e8dd4561a2a1'; 			;; 		'riscv64') 			url='https://github.com/docker/buildx/releases/download/v0.16.1/buildx-v0.16.1.linux-riscv64'; 			sha256='2f6a0703e3359395574621a071896d02ea4240570813a5ea154febbe6d39fba0'; 			;; 		's390x') 			url='https://github.com/docker/buildx/releases/download/v0.16.1/buildx-v0.16.1.linux-s390x'; 			sha256='3423d552b0ed13538890b054cf5bc1605a396f77ef800a9a8192024cb5e90230'; 			;; 		*) 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
                        
# 2024-06-19 08:17:01  0.00B 设置环境变量 DOCKER_BUILDX_VERSION
ENV DOCKER_BUILDX_VERSION=0.16.1
                        
# 2024-06-19 08:17:01  38.44MB 执行命令并创建新的镜像层
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-26.1.4.tgz'; 			;; 		'armhf') 			url='https://download.docker.com/linux/static/stable/armel/docker-26.1.4.tgz'; 			;; 		'armv7') 			url='https://download.docker.com/linux/static/stable/armhf/docker-26.1.4.tgz'; 			;; 		'aarch64') 			url='https://download.docker.com/linux/static/stable/aarch64/docker-26.1.4.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
                        
# 2024-06-19 08:17:01  0.00B 设置环境变量 DOCKER_VERSION
ENV DOCKER_VERSION=26.1.4
                        
# 2024-06-19 08:17:01  1.03KB 执行命令并创建新的镜像层
RUN /bin/sh -c set -eux; 	addgroup -g 2375 -S docker # buildkit
                        
# 2024-06-19 08:17:01  0.00B 执行命令并创建新的镜像层
RUN /bin/sh -c [ -e /etc/nsswitch.conf ] && grep '^hosts: files dns' /etc/nsswitch.conf # buildkit
                        
# 2024-06-19 08:17:01  16.88MB 执行命令并创建新的镜像层
RUN /bin/sh -c apk add --no-cache 		ca-certificates 		openssh-client 		git # buildkit
                        
# 2024-06-19 08:17:01  0.00B 
/bin/sh -c #(nop)  CMD ["/bin/sh"]
                        
# 2024-06-19 08:17:01  7.80MB 
/bin/sh -c #(nop) ADD file:99093095d62d0421541d882f9ceeddb2981fe701ec0aa9d2c08480712d5fed21 in / 
                        
                    

镜像信息

{
    "Id": "sha256:ecaee68599b0237bdb13f87d0adf5ae8c2d14b30f3a801d3d863745ecdd47580",
    "RepoTags": [
        "docker:26.1.4-dind",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/docker:26.1.4-dind"
    ],
    "RepoDigests": [
        "docker@sha256:dd43b430341a40d88f4f30edb03865daa9d6fa39c9b1da70f27e2a89cec3eae1",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/docker@sha256:71a0e46d177400a0f396c0e85273a3a023c90d71021c890f107ed46598d40867"
    ],
    "Parent": "",
    "Comment": "buildkit.dockerfile.v0",
    "Created": "2024-06-19T00:17:01Z",
    "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=26.1.4",
            "DOCKER_BUILDX_VERSION=0.16.1",
            "DOCKER_COMPOSE_VERSION=2.29.1",
            "DOCKER_TLS_CERTDIR=/certs",
            "DIND_COMMIT=65cfcc28ab37cb75e1560e4b4738719c07c6618e"
        ],
        "Cmd": null,
        "ArgsEscaped": true,
        "Image": "",
        "Volumes": {
            "/var/lib/docker": {}
        },
        "WorkingDir": "",
        "Entrypoint": [
            "dockerd-entrypoint.sh"
        ],
        "OnBuild": null,
        "Labels": null
    },
    "Architecture": "amd64",
    "Os": "linux",
    "Size": 361202762,
    "GraphDriver": {
        "Data": {
            "LowerDir": "/var/lib/docker/overlay2/14642eba42d92a28c03c6402e1d4253c02c8d6f6094aaa842444896a5ff72bcd/diff:/var/lib/docker/overlay2/26a29674ab07694c57c25285eb0fa72977399d68b5152f5d7a2d3bde75eb31aa/diff:/var/lib/docker/overlay2/7a11fd8228a149a44e131ddbd30f1cbf765c94a629fc4dc4a3366574c92c76f3/diff:/var/lib/docker/overlay2/824c320576d055bffc88289e24b10f0b44bad60a8f8f41e7c72a06cb63674a2f/diff:/var/lib/docker/overlay2/be7017eed8076630a505d73486a20200cad0cbfa3a67ace0446cfbf50534f3de/diff:/var/lib/docker/overlay2/31345bab24aebd772714aa92c1cb5b1ef90f8984e4d56576f383165716a8cd93/diff:/var/lib/docker/overlay2/9938761b06a510ea1a47bbe573b427f2d1ad9eb4d1c0f88eb155eaf443a15fa2/diff:/var/lib/docker/overlay2/e9037bcef08b3739947278c033c8d5e39dd313eef6e2eab4e290244e00244e7c/diff:/var/lib/docker/overlay2/d9d18437b81d0360fcd81dd70e782b2be4c0cd0dded970d49782418b110365e3/diff:/var/lib/docker/overlay2/4f71f4d34262c4e1a897ceda6552f48ee7063e1968787ac99293f48a2a923091/diff:/var/lib/docker/overlay2/b1e41d545a279a4335071146c55ec7032329d90af485d3c7b91740065bd896ca/diff:/var/lib/docker/overlay2/65e85b2427ef268795d84ca7f3d839c4c8f13afab7e570bacacd320f941897aa/diff:/var/lib/docker/overlay2/4f37fbb5e933c718df83a3095ac57061122b501be7adc125f0e5560f5fa51333/diff:/var/lib/docker/overlay2/39556a2e08da975972b55ff7d1bdb2deea516c7c77c441e97dd63543a4b11364/diff:/var/lib/docker/overlay2/b30d0873ffbc06c1fd79720b4074702c309c8f68cdced3596e2b7b8b3c4f153b/diff",
            "MergedDir": "/var/lib/docker/overlay2/1e6bcf4df40302928a52edf4f218d2a6530847624a444ba6ca7e5cb86fc04d0f/merged",
            "UpperDir": "/var/lib/docker/overlay2/1e6bcf4df40302928a52edf4f218d2a6530847624a444ba6ca7e5cb86fc04d0f/diff",
            "WorkDir": "/var/lib/docker/overlay2/1e6bcf4df40302928a52edf4f218d2a6530847624a444ba6ca7e5cb86fc04d0f/work"
        },
        "Name": "overlay2"
    },
    "RootFS": {
        "Type": "layers",
        "Layers": [
            "sha256:78561cef0761903dd2f7d09856150a6d4fb48967a8f113f3e33d79effbf59a07",
            "sha256:b21aac7b56ded7fc70d41d5657fe19fa94487cfebe583733334d754162d14f44",
            "sha256:5f70bf18a086007016e948b04aed3b82103a36bea41755b6cddfaf10ace3c6ef",
            "sha256:ebe7ed1665fa30d04d9523236ae18720af98932c85f701dc2e4c4a54ccd9dc5f",
            "sha256:1a62fc00ef05200337d22ab94385cb70f1d02df655ffef5a038a64bd9d5474a3",
            "sha256:0e7ba16016617eacf48a9c881f6f15fbe50e2dae18478207ac989c357558d744",
            "sha256:9369f7e221b600123d7d659f739e96aecd005f2349edda74f52e9f4972267191",
            "sha256:79136d00bc2d1f27a83d5e72b200861dc565da1775695877b5332093635c58af",
            "sha256:62474f6887232e44fbf587e382afc1c19f796bfb7db1f2edbb532b20f47b0c23",
            "sha256:e03e630a9d9b61a902553c2fb1f2d9fbf00bccc297a4627799282b6658c22650",
            "sha256:9ac08aa360ceb7e8a1daf965b1e08fbc3c7570db1b43054d99415e666324e755",
            "sha256:790a057844ac5e370c02c4f21031336d43a9119d1cae0c53a7aca927fb76135b",
            "sha256:35fec1feecd0b49559401cd9d2b72911a7db8126ce8b97390c5401ed7d42648c",
            "sha256:233545e0d46fe8c646ec0a136b681a77605280ff0c325c7afc5bfe0f38bf1cf4",
            "sha256:d2bdfa7f527377e146c52a7f3d21cfc94ff0fed18477b1549e152b3d304a1d16",
            "sha256:3f5e785e34e54dca635523b8fdd44700be6315cdcafa8d60b270518c106a3fee"
        ]
    },
    "Metadata": {
        "LastTagTime": "2026-01-14T18:38:36.768867398+08:00"
    }
}

更多版本

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

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

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

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

docker.io/docker:stable-dind

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

docker.io/docker:19.03

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

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

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

docker.io/docker/dockerfile:1

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

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

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

docker.io/docker:dind

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

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
318

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

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

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

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

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

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

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

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

docker.io/docker:24.0.6-dind

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

docker.io/docker:24.0.6

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

docker.io/docker/compose:1.29.2

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

docker.io/docker:27.4.0-dind

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

docker.io/docker:27

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

docker.io/docker:27.4.0

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

docker.io/docker:25.0.2-dind

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

docker.io/docker/dockerfile:1.4

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

docker.io/dockeruserdou/oom-py:latest

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

docker.io/docker/getting-started:latest

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

docker.io/dockeruserdou/controller:latest

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

docker.io/dockeruserdou/controller:v1

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

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

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

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

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

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
315

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

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

docker.io/dockeruserdou/node-cache:v1

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

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

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

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

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

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

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

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

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

docker.io/docker/dockerfile:1.4

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

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

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

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

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

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

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

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

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

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

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

docker.io/docker:18.06.3

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

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

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

docker.io/docker:24.0.9

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

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

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

docker.io/docker/dockerfile:1.2

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

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

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

docker.io/docker/dockerfile:experimental

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

docker.io/docker:28-rc-dind

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

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

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

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

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

docker.io/docker/dockerfile:1-labs

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

docker.io/docker:24-cli

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

docker.io/docker/mcp-gateway:v2

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

docker.io/docker:cli

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

docker.io/docker:20.10.16-dind

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

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

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

docker.io/docker:20.10

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

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

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

docker.io/docker/dockerfile:1.14

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

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
163

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

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

docker.io/dockereng/awscli:1.16.156

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

docker.io/docker:24.0.7-dind

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

docker.io/docker:24.0.7-cli

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

docker.io/docker/dockerfile:1.6

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

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

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

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

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

docker.io/docker:latest

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

docker.io/docker:29.1.3-dind

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

docker.io/docker:29.1.3

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

docker.io/docker/dockerfile:1.6

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

docker.io/docker/dockerfile:1.8.1

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

docker.io/docker/dockerfile:1.20

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

docker.io/docker/dockerfile:1.10

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

docker.io/docker/dockerfile:1.6.0

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

docker.io/docker:27-dind

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

docker.io/docker/desktop-docker-debug-service:latest

linux/amd64 docker.io1.17GB2026-01-14 17:32
11

docker.io/docker:26.1.4-dind

linux/amd64 docker.io361.20MB2026-01-14 18:38
12