docker拉取镜像错误 missing signature key

当我使用docker拉取一个特定的镜像时,提示错误。

docker pull apache/apisix:3.2.2-centos
Error response from daemon: missing signature key

但我拉取其他镜像就可以访问。
例如

docker pull mongo:4.4.6

解决方案:
卸载当前版本docker

yum erase docker \
                  docker-client \
                  docker-client-latest \
                  docker-common \
                  docker-latest \
                  docker-latest-logrotate \
                  docker-logrotate \
                  docker-selinux \
                  docker-engine-selinux \
                  docker-engine \
                  docker-ce

下载最新版docker

yum install docker-ce -y

总结
应该是版本过低,导致与对应镜像版本不兼容导致的

你可能感兴趣的:(centos,docker,docker)