Docker多架构镜像标签创建

harbor如何给两个架构不同的镜像打相同的tag,从而根据相同的镜像地址,在x86机器上拉的是x86架构的镜像,在arm机器上拉的是arm的镜像

要实现根据相同的镜像地址,在x86机器上拉取x86架构的镜像,在ARM机器上拉取ARM架构的镜像,可以使用Docker的多架构支持功能和Manifest List。

Manifest List是一个JSON文件,用于将不同架构的镜像关联到相同的标签。下面是实现步骤:

  1. 构建和推送镜像:分别构建x86架构和ARM架构的镜像,并推送到Docker仓库。确保在构建时分别指定不同的架构,以便生成不同的镜像。

    对于x86架构:

docker build -t your-repo/your-image:latest-x86 -f Dockerfile.x86 .
docker push your-repo/your-image:latest-x86

        对于ARM架构:

docker build -t your-repo/your-image:latest-arm -f Dockerfile.arm .
docker push your-repo/your-image:latest-arm

    2.创建Manifest List:使用docker manifest create命令创建一个Manifest List,并添加x86和ARM架构的镜像作为不同的平台。

docker manifest create your-repo/your-image:latest your-repo/your-image:latest-x86 your-repo/your-image:latest-arm

  3. 注解Manifest List:使用docker manifest annotate命令为Manifest List中的每个镜像添加注解,指定其平台和架构信息。

对于x86架构:

docker manifest annotate your-repo/your-image:latest your-repo/your-image:latest-x86 --os linux --arch amd64

对于ARM架构:

docker manifest annotate your-repo/your-image:latest your-repo/your-image:latest-arm --os linux --arch arm

4. 推送Manifest List:使用docker manifest push命令推送Manifest List到Docker仓库。

docker manifest push your-repo/your-image:latest

5. 拉取镜像:现在,可以在x86架构的机器上使用相同的标签your-repo/your-image:latest拉取镜像,Docker将会根据主机架构自动选择合适的镜像。

请注意,以上步骤中的示例命令是基于Docker命令行工具进行的。在使用Manifest List之前,请确保你的Docker版本支持多架构和Manifest功能。

猜你喜欢

转载自blog.csdn.net/LONG_Yi_1994/article/details/131579832