docker.io/docker:latest linux/arm64

docker.io/docker:latest - 国内下载镜像源 浏览次数:22

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

温馨提示: 这是一个 linux/arm64 系统架构镜像
docker.io/docker

官方 Docker 镜像

源镜像 docker.io/docker:latest
国内镜像 swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/docker:latest-linuxarm64
镜像ID sha256:5b51d82ca438a87cf78f035539342acb921ff3b8a7c5c316c5dd827b52838dba
镜像TAG latest-linuxarm64
大小 362.89MB
镜像源 docker.io
项目信息 Docker-Hub主页 🚀项目TAG 🚀
CMD
启动入口 dockerd-entrypoint.sh
工作目录 /
OS/平台 linux/arm64
浏览量 22 次
贡献者
镜像创建 2025-12-12T23:09:25.356470868Z
同步时间 2025-12-16 10:31
更新时间 2025-12-17 14:15
开放端口
2375/tcp 2376/tcp
目录挂载
/var/lib/docker
环境变量
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin DOCKER_VERSION=29.1.3 DOCKER_BUILDX_VERSION=0.30.1 DOCKER_COMPOSE_VERSION=5.0.0 DOCKER_TLS_CERTDIR=/certs DIND_COMMIT=8d9e3502aba39127e4d12196dae16d306f76993d

Docker拉取命令

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

Containerd拉取命令

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

Shell快速替换命令

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

Ansible快速分发-Docker

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

Ansible快速分发-Containerd

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

镜像构建历史


# 2025-12-13 07:09:25  0.00B 设置默认要执行的命令
CMD []
                        
# 2025-12-13 07:09:25  0.00B 配置容器启动时运行的命令
ENTRYPOINT ["dockerd-entrypoint.sh"]
                        
# 2025-12-13 07:09:25  0.00B 声明容器运行时监听的端口
EXPOSE map[2375/tcp:{} 2376/tcp:{}]
                        
# 2025-12-13 07:09:25  0.00B 创建挂载点用于持久化数据或共享数据
VOLUME [/var/lib/docker]
                        
# 2025-12-13 07:09:25  9.09KB 复制新文件或目录到容器中
COPY dockerd-entrypoint.sh /usr/local/bin/ # buildkit
                        
# 2025-12-13 07:09:25  3.40KB 执行命令并创建新的镜像层
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-12-13 07:09:25  0.00B 设置环境变量 DIND_COMMIT
ENV DIND_COMMIT=8d9e3502aba39127e4d12196dae16d306f76993d
                        
# 2025-12-13 07:09:25  169.65MB 执行命令并创建新的镜像层
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-29.1.3.tgz'; 			;; 		'armhf') 			url='https://download.docker.com/linux/static/stable/armel/docker-29.1.3.tgz'; 			;; 		'armv7') 			url='https://download.docker.com/linux/static/stable/armhf/docker-29.1.3.tgz'; 			;; 		'aarch64') 			url='https://download.docker.com/linux/static/stable/aarch64/docker-29.1.3.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-12-13 07:09:22  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-12-13 07:09:22  380.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-12-13 07:09:21  29.41MB 执行命令并创建新的镜像层
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-12-13 07:03:25  0.00B 设置默认要执行的命令
CMD ["sh"]
                        
# 2025-12-13 07:03:25  0.00B 配置容器启动时运行的命令
ENTRYPOINT ["docker-entrypoint.sh"]
                        
# 2025-12-13 07:03:25  0.00B 执行命令并创建新的镜像层
RUN /bin/sh -c mkdir /certs /certs/client && chmod 1777 /certs /certs/client # buildkit
                        
# 2025-12-13 07:03:24  0.00B 设置环境变量 DOCKER_TLS_CERTDIR
ENV DOCKER_TLS_CERTDIR=/certs
                        
# 2025-12-13 07:03:24  1.85KB 复制新文件或目录到容器中
COPY docker-entrypoint.sh /usr/local/bin/ # buildkit
                        
# 2025-12-13 07:03:24  587.00B 复制新文件或目录到容器中
COPY modprobe.sh /usr/local/bin/modprobe # buildkit
                        
# 2025-12-13 07:03:24  29.94MB 执行命令并创建新的镜像层
RUN /bin/sh -c set -eux; 		apkArch="$(apk --print-arch)"; 	case "$apkArch" in 		'x86_64') 			url='https://github.com/docker/compose/releases/download/v5.0.0/docker-compose-linux-x86_64'; 			sha256='5091bac5729ce968c602d157c2f0b959b7b367d4efb70aa864eb9ae78eebe13e'; 			;; 		'armhf') 			url='https://github.com/docker/compose/releases/download/v5.0.0/docker-compose-linux-armv6'; 			sha256='119ba4f6e2b3b2deb8e8bc57fbc1a73c9197b34c4118770582eedc582c2c5ed6'; 			;; 		'armv7') 			url='https://github.com/docker/compose/releases/download/v5.0.0/docker-compose-linux-armv7'; 			sha256='0feac2ca0dd33f40eebdbe8744b06eea2fe768c311b2fa3e29814b27ab832ccb'; 			;; 		'aarch64') 			url='https://github.com/docker/compose/releases/download/v5.0.0/docker-compose-linux-aarch64'; 			sha256='d68ba7053066a44a51ee33b7dcdc106d8c8745eb0eaf46dc59fbbeb22ec46392'; 			;; 		'ppc64le') 			url='https://github.com/docker/compose/releases/download/v5.0.0/docker-compose-linux-ppc64le'; 			sha256='449dd11d3468dca4e1a33426cfebcd67dd097583ea4456b47878ccee907965b9'; 			;; 		'riscv64') 			url='https://github.com/docker/compose/releases/download/v5.0.0/docker-compose-linux-riscv64'; 			sha256='550938fcca6816dfe1b6ca10387f88860ac0f11f363ca39fa012d3d64364e479'; 			;; 		's390x') 			url='https://github.com/docker/compose/releases/download/v5.0.0/docker-compose-linux-s390x'; 			sha256='0a291c1fb6887ce3a81005a9bef6b8e6c666f225d9b5e290cd564f9d19de6cc5'; 			;; 		*) 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-12-13 07:03:24  0.00B 设置环境变量 DOCKER_COMPOSE_VERSION
ENV DOCKER_COMPOSE_VERSION=5.0.0
                        
# 2025-12-13 07:03:24  66.85MB 执行命令并创建新的镜像层
RUN /bin/sh -c set -eux; 		apkArch="$(apk --print-arch)"; 	case "$apkArch" in 		'x86_64') 			url='https://github.com/docker/buildx/releases/download/v0.30.1/buildx-v0.30.1.linux-amd64'; 			sha256='c37114fcd034025ec68e224657c8a5a850df472ded3ddcbca75ad3a7ebb9710d'; 			;; 		'armhf') 			url='https://github.com/docker/buildx/releases/download/v0.30.1/buildx-v0.30.1.linux-arm-v6'; 			sha256='348d17c7cc881e9268255d6f404669ae29789003575d1da9d97b51cd6ca7f0dd'; 			;; 		'armv7') 			url='https://github.com/docker/buildx/releases/download/v0.30.1/buildx-v0.30.1.linux-arm-v7'; 			sha256='32646cb57c43640a71c81f206897b78a8f1abe6b6db62bab115b5940fc5be884'; 			;; 		'aarch64') 			url='https://github.com/docker/buildx/releases/download/v0.30.1/buildx-v0.30.1.linux-arm64'; 			sha256='31d012d52d6df68aef4b55db62330967b562811f0de30cdfaa4505f314797c76'; 			;; 		'ppc64le') 			url='https://github.com/docker/buildx/releases/download/v0.30.1/buildx-v0.30.1.linux-ppc64le'; 			sha256='13523e8d1820019f404df31c7ec17c7a76c16f638dd04acc33f5d141f683247c'; 			;; 		'riscv64') 			url='https://github.com/docker/buildx/releases/download/v0.30.1/buildx-v0.30.1.linux-riscv64'; 			sha256='86af30811ceaad9fc34a6bc02e5d093d1460ec24f125c47e639ed1fac9effe83'; 			;; 		's390x') 			url='https://github.com/docker/buildx/releases/download/v0.30.1/buildx-v0.30.1.linux-s390x'; 			sha256='b752c6824bcc355b012d6f595987706fef15243792fe755f50de76c979bc592d'; 			;; 		*) 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-12-13 07:03:23  0.00B 设置环境变量 DOCKER_BUILDX_VERSION
ENV DOCKER_BUILDX_VERSION=0.30.1
                        
# 2025-12-13 07:03:23  38.95MB 执行命令并创建新的镜像层
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-29.1.3.tgz'; 			;; 		'armhf') 			url='https://download.docker.com/linux/static/stable/armel/docker-29.1.3.tgz'; 			;; 		'armv7') 			url='https://download.docker.com/linux/static/stable/armhf/docker-29.1.3.tgz'; 			;; 		'aarch64') 			url='https://download.docker.com/linux/static/stable/aarch64/docker-29.1.3.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-12-13 07:03:23  0.00B 设置环境变量 DOCKER_VERSION
ENV DOCKER_VERSION=29.1.3
                        
# 2025-12-13 07:03:20  1.03KB 执行命令并创建新的镜像层
RUN /bin/sh -c set -eux; 	addgroup -g 2375 -S docker # buildkit
                        
# 2025-12-13 07:03:20  0.00B 执行命令并创建新的镜像层
RUN /bin/sh -c [ -e /etc/nsswitch.conf ] && grep '^hosts: files dns' /etc/nsswitch.conf # buildkit
                        
# 2025-12-13 07:03:20  18.99MB 执行命令并创建新的镜像层
RUN /bin/sh -c apk add --no-cache 		ca-certificates 		openssh-client 		git # buildkit
                        
# 2025-12-04 03:30:17  0.00B 设置默认要执行的命令
CMD ["/bin/sh"]
                        
# 2025-12-04 03:30:17  8.70MB 复制文件或目录到容器中
ADD alpine-minirootfs-3.23.0-aarch64.tar.gz / # buildkit
                        
                    

镜像信息

{
    "Id": "sha256:5b51d82ca438a87cf78f035539342acb921ff3b8a7c5c316c5dd827b52838dba",
    "RepoTags": [
        "docker:latest",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/docker:latest-linuxarm64"
    ],
    "RepoDigests": [
        "docker@sha256:7370a6c49b7e708fb969b422dffe6cdd78a9f0ff5b3bfba0e0cddce736c49eaf",
        "swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/docker@sha256:1125d4c17d129057cd0ffd49331d82e98ead98d8cb6130428a0a6b1bbe80b91f"
    ],
    "Parent": "",
    "Comment": "buildkit.dockerfile.v0",
    "Created": "2025-12-12T23:09:25.356470868Z",
    "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=29.1.3",
            "DOCKER_BUILDX_VERSION=0.30.1",
            "DOCKER_COMPOSE_VERSION=5.0.0",
            "DOCKER_TLS_CERTDIR=/certs",
            "DIND_COMMIT=8d9e3502aba39127e4d12196dae16d306f76993d"
        ],
        "Cmd": null,
        "Image": "",
        "Volumes": {
            "/var/lib/docker": {}
        },
        "WorkingDir": "/",
        "Entrypoint": [
            "dockerd-entrypoint.sh"
        ],
        "OnBuild": null,
        "Labels": null
    },
    "Architecture": "arm64",
    "Variant": "v8",
    "Os": "linux",
    "Size": 362888988,
    "GraphDriver": {
        "Data": {
            "LowerDir": "/var/lib/docker/overlay2/eb6e382c594aff7b688747e270a58963c9345202c3770de232f392aaf2fb0bbf/diff:/var/lib/docker/overlay2/b56582e4194abd64c75fd4cd8ded1bf7637882940830dd68cf1a85859648577d/diff:/var/lib/docker/overlay2/bd49c3af36785d9a6a97a435e6d5d206456953256ac68f56927de447d8f55658/diff:/var/lib/docker/overlay2/b916702bbb88911ad2dd19fe359446061270a2749046920b3bd534228fc2ac42/diff:/var/lib/docker/overlay2/82f76e2cf5a41e79ab7daebc40cbb276f2f64c93cb13a96fa43249cd6ed6c4f0/diff:/var/lib/docker/overlay2/7e8b83144013f18596cbe72c2857cc83dd66b43f728b4134f1b69ed4969db100/diff:/var/lib/docker/overlay2/c685930303fe5536ae15f4bb7342b07136a4ca1a4cd02e70127c59cda28e214d/diff:/var/lib/docker/overlay2/d14bb0fc3dfbc4315cca32901100871e407205b75adfb315c8180d72e1409e53/diff:/var/lib/docker/overlay2/d897da7c894aadfb40932416eb857290b9490c4f4162a75c0e9c2b11352bd70f/diff:/var/lib/docker/overlay2/79465a2b9e91b750dfc59300683ce6b54700ab32fd31704313de401badf44352/diff:/var/lib/docker/overlay2/2adc64eceb134af9552989ecd43f8429c58bb5d1b5d73944efd87b40868cf573/diff:/var/lib/docker/overlay2/4c4a948fc48ae260e322e03677692da26197425493e2f4ff493b826c691c0299/diff:/var/lib/docker/overlay2/c57fbe9bb67dc3dc0262806230aaf6a0e439191466cca203b03adc90fc0e32db/diff:/var/lib/docker/overlay2/0ee65060fed7b8f551c45cd0d46882cb454338bb7d2adbfbc53713c750525782/diff:/var/lib/docker/overlay2/ad3f2fc100e8acd0d06fe5507417c7cedf9d05bd8fabcb9fdb2a242e35605438/diff",
            "MergedDir": "/var/lib/docker/overlay2/47537503b5b586c92ba8a5ca7c0e65ea4e360cac4f6c663742f48e5bd1a558b5/merged",
            "UpperDir": "/var/lib/docker/overlay2/47537503b5b586c92ba8a5ca7c0e65ea4e360cac4f6c663742f48e5bd1a558b5/diff",
            "WorkDir": "/var/lib/docker/overlay2/47537503b5b586c92ba8a5ca7c0e65ea4e360cac4f6c663742f48e5bd1a558b5/work"
        },
        "Name": "overlay2"
    },
    "RootFS": {
        "Type": "layers",
        "Layers": [
            "sha256:a6cd72a5d439fb64ca3884e42ae0dc4ce90b1aebf8c12cc70dc4deb78441cb54",
            "sha256:d9f2748f1a7f58dedbd1be3e421f6ff1caba8a36c2844f65b0f1909f8737f4c0",
            "sha256:5f70bf18a086007016e948b04aed3b82103a36bea41755b6cddfaf10ace3c6ef",
            "sha256:355888e21961755997afbc65af6397254c1cd9a2e9e005d360df59278ef57f74",
            "sha256:75c79f6b97ee4899b9f6ea6671a027c4b5ce94d065d17fa9789ec50d09685b85",
            "sha256:d0e2313f95ca909530cd6285ed755a93a63b33d7b243f9ec15a952aed828bd10",
            "sha256:5ed7af9d8413f59af9052c2b77cc9e9cee30c5c5ea9431135ec601a7edeb0339",
            "sha256:8cd7e2c7e4fafda4478c61f7fb254ed6c659deecbfa0a4797305ed349c4ec855",
            "sha256:71801f7ad89d7570cf0fc0462508b96d505d72c06107c7335d38a02f9300e77c",
            "sha256:bf8af79135b61b94e155fa06816f7a1012f8e84b802c2abffcf4cf0980743504",
            "sha256:7007fc38f689f5b62d7a4d3316e01f7a675a4ee1323a62dd5fb7e60821116834",
            "sha256:083361fe8ad2faabc0ca061ed777ee6c9555f3b9c46eaa5eab0c4232c80d8520",
            "sha256:fe2024e8c54b1f6868635b704014b6d8725b539db92e1459e88aa37899e095bb",
            "sha256:b76b0a451b75189ce6cd5ed278b1521007b011a0ff71d623764d30a32b482679",
            "sha256:de08cd88a133aea4cb07cdfce9e723f56476c2493306c8bb8b9df5b075fa0255",
            "sha256:fc5152abe973ad5ffbe624536cb36f860dede01d8c87a47bf3291d86ff1038cb"
        ]
    },
    "Metadata": {
        "LastTagTime": "2025-12-16T10:31:24.83191426+08:00"
    }
}

更多版本

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

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

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

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

docker.io/docker:stable-dind

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

docker.io/docker:19.03

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

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

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

docker.io/docker/dockerfile:1

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

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

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

docker.io/docker:dind

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

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

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

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

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

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

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

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

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

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

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

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

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

docker.io/docker:24.0.6-dind

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

docker.io/docker:24.0.6

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

docker.io/docker/compose:1.29.2

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

docker.io/docker:27.4.0-dind

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

docker.io/docker:27

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

docker.io/docker:27.4.0

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

docker.io/docker:25.0.2-dind

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

docker.io/docker/dockerfile:1.4

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

docker.io/dockeruserdou/oom-py:latest

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

docker.io/docker/getting-started:latest

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

docker.io/dockeruserdou/controller:latest

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

docker.io/dockeruserdou/controller:v1

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

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

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

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

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

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

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

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

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

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

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

docker.io/dockeruserdou/node-cache:v1

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

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

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

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

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

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

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

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

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

docker.io/docker/dockerfile:1.4

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

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

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

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

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

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

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

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

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

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

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

docker.io/docker:18.06.3

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

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

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

docker.io/docker:24.0.9

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

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

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

docker.io/docker/dockerfile:1.2

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

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

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

docker.io/docker/dockerfile:experimental

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

docker.io/docker:28-rc-dind

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

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

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

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

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

docker.io/docker/dockerfile:1-labs

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

docker.io/docker:24-cli

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

docker.io/docker/mcp-gateway:v2

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

docker.io/docker:cli

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

docker.io/docker:20.10.16-dind

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

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

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

docker.io/docker:20.10

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

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

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

docker.io/docker/dockerfile:1.14

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

docker.io/docker/dockerfile:1.14

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

docker.io/docker:20.10.16

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

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

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

docker.io/dockereng/awscli:1.16.156

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

docker.io/docker:24.0.7-dind

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

docker.io/docker:24.0.7-cli

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

docker.io/docker/dockerfile:1.6

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

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

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

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

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

docker.io/docker:latest

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

docker.io/docker:29.1.3-dind

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

docker.io/docker:29.1.3

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