使用 docker build 后出现报错

The requested image's platform (linux/arm64/v8) does not match the detected host platform (linux/amd64) and no specific platform was requested

意思看着是: 发起 build 的时候请求的系统与当前主机系统版本不一致,且 build 的时候没有指定 platform

也就是说 docker build 可以加上 platform 参数,如: docker build -t tag:version -f Dockerfile --platform linux/amd64 .

注: x86_64,x64,AMD64基本可以理解为同一个平台技术

添加 --platform 后执行 build 依然出错

似乎 --platform 没有生效,好像要开启 docker 的实验功能:experimental: ture

  • 查看当前是否已经开启了 experimental : docker version -f '{{.Server.Experimental}}' 或者 docker info
  • ture 则为打开了
  • vim /etc/docker/daemon.json 添加
    {
    	"experimental": true
    
  • 重启 docker 服务: systemctl restart docker 问题解决
  • https://docs.docker.com/engine/reference/commandline/build/#squash-an-images-layers—squash-experimental
  • https://stackoverflow.com/questions/42494853/standard-init-linux-go178-exec-user-process-caused-exec-format-error
docker创建容器错误: docker在下载镜像之后,创建容器会出现秒退exit现象,容器怎么都启动不了,查看日志报错 standard_init_linux.go:211: exec user process caused "exec format error" 我们常用的docker安装一些常用软件及工具都是基于x86架构的服务器上的,但是最近在搭建服务器环境时用的是华为鲲鹏服务器,鲲鹏是基于ARM64架构的服务器,那么在docker上的镜像很多都没有基于这个架构打的镜像。 解决方法: 1、 Doc 批处理 docker-exec 任务的脚本。 $ git clone https://github.com/docker-exec/docker-exec-bot.git $ cd docker-exec-bot $ cp .dbot-placeholder .dbot 完成“.dbot”配置文件中所需的属性。 个人访问令牌可以在 GitHub 上生成并用于代替帐户密码。 Usage: ./dbot.sh -t <type> -o <operation> ./dbot.sh -g <global> Options: -t all|base|dexec|image|web|dbot -o fmodule|fpush|get|printwd|remodule|rewrite|uplicense| uname -a Linux VM-0-5-centos 3.10.0-1127.19.1.el7.x86_64 #1 SMP Tue Aug 25 17:23:54 UTC 2020 x86_64 x86_64 x86_64 GNU/Linux x86_64 CPU为Apple M1 Pro的mac终端查看型号 uname -a Darwin MacBook.local 21.2.0 Darwin Kernel Version 21.2.0: Sun Nov 28 主机 v0.15.0-rancher1-1 部署应用时,提示:standard_init_linux.go:178: exec user process caused "operation not permitted” standard_init_linux.go:17... [root@localhost etc]# docker run -it --name my_centos7_cklpost8.1 --net=host centos7_cklpost6.0 /bin/bash standard_init_linux.go:211: exec user process caused "exec format error" [root@localhost etc]# [root@localhost etc]# [root@localhost etc]# dock... 在mbp M1 上docker build -t hub/xx/xxx:v1 ./ (golang项目)后运行该镜像报错 standard_init_linux.go:219: exec user process caused: exec format error Docker启动失败提示【exec user process caused: exec format errorDocker版本不支持Arm64,可在网络上查找ARM64的版本