在 Azure 管道中 - 如何使用多个映像标记生成 docker 映像In Azure pipeline - how to build docker image with multiple image tags

In Azure pipeline - how to build docker image with multiple image tags

提问人:Ashokkumar Udayasuriyan 提问时间:6/8/2023 更新时间:6/8/2023 访问量:228

问:

  • 任务:Docker@2
    输入: containerRegistry: 'my-registry' repository: '$(System.TeamProject)/$(Build.Repository.Name)' 命令: 'buildAndPush' Dockerfile: 'Dockerfile'



    标签:
    |
    $(Build.SourceVersion) $(Build.SourceBranchName)

是否可以为一个映像构建执行多个标记?

需要在 azure pipelines 中为一个 docker 生成添加多个映像标记

azure-devops azure-pipelines-build-task acr

评论


答:

1赞 4c74356b41 6/8/2023 #1

您的问题包含答案:

tags: |
  $(Build.SourceVersion)
  $(Build.SourceBranchName)
  more_tags_go_here