docker交叉构建镜像--docker buildx的使用

使用docker buildx可以进行跨平台架构的交叉镜像构建,比如在x86机器上构建arm架构的docker镜像。
buildx不在docker的初始子命令中,需要自己安装。
另外需要注意构建镜像过程中Dockerfile向容器中COPY或ADD的可执行文件也应该使用对应平台架构的版本,比如golang程序的镜像,在x86机器上构建arm镜像,那么COPY到容器的go程序也应该是arm版本的。
关于怎么编译获取arm版本的go可执行文件,可以参考 golang交叉编译 。

buildX安装及初始化

安装

cd ~/.docker
mkdir cli-plugins
cd cli-plugins/
wget https://github.com/docker/buildx/releases/download/v0.7.1/buildx-v0.7.1.linux-amd64
mv buildx-v0.7.1.linux-amd64 docker-buildx
chmod a+x ~/.docker/cli-plugins/docker-buildx

初始化

docker buildx create --name builderx
docker buildx use builderx
docker buildx inspect --bootstrap

docker buildx使用

docker buildx build --platform {platform} -f Dockerfile -t {imageTag} . --load

{platform}支持的平台:

  • linux/ppc64le
  • linux/arm64
  • linux/amd64

示例

docker buildx build --platform linux/arm64 -f Dockerfile -t prometheus-arm64/prometheus:v2.31.1 . --load

docker buildx build --platform linux/ppc64le -f Dockerfile -t prometheus-ppc64le/prometheus:v2.31.1 . --load

你可能感兴趣的:(Docker,docker,镜像,交叉构建,跨平台,buildx)