运行docker镜像时,报错:
(1)
WARNING: The requested image’s platform (linux/amd64) does not match the detected host platform (linux/386) and no specific platform was requested
原因:
dockers镜像的系统架构类型和主机(虚拟机)的系统架构类型不一样
解决办法:
docker可以通过--platform = <系统架构>
命令获取指定系统架构的镜像
可以通过uname -m
命令查看主机(虚拟机)的系统架构,或者根据上面的报错提示文章来源:https://www.toymoban.com/news/detail-504836.html
因为这里报错提示是linux/386,所以只要在拉取镜像命令加入 --platform linux/386
文章来源地址https://www.toymoban.com/news/detail-504836.html
到了这里,关于运行docker镜像报错:WARNING: The requested image‘s platform (linux/amd64)的解决办法的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!