az acr build authentication for private docker registry with base images

az acr build authentication for private docker registry with base images

我们在私有 ACR 中有一些基础镜像,我们希望使用来自第一个注册表的基础镜像在其他 ACR 中构建镜像。构建失败并出现身份验证错误。

有没有办法授权 az acr build agent 到远程 docker 注册表或不同的 ACR?

您不能直接使用构建命令从基本注册表中的基本映像构建目标注册表中的映像。因为 az acr build 仅支持这些源位置:本地源代码目录路径(例如“./src”),或 URL 到 git 存储库(例如 https://github.com/Azure-Samples/acr-build-helloworld-node.git

你可以Import container images to a container registry

az acr import \
  --name myregistry \
  --source docker.io/library/hello-world:latest \
  --image hello-world:latest