在Azure管道中,如何构建具有多个镜像标签的Docker镜像。

huangapple go评论60阅读模式
英文:

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

问题

- 任务: Docker@2                                                               
  输入:                                                                      
    容器注册表: '我的注册表'                                           
    仓库: '$(System.TeamProject)/$(Build.Repository.Name)'               
    命令: 'buildAndPush'                                                    
    Dockerfile: 'Dockerfile'                                                   
    标签: |                                                                    
      $(Build.SourceVersion)                                                   
      $(Build.SourceBranchName)

是否可以为一个镜像构建添加多个标签?

在 Azure 流水线中为一个 Docker 构建添加多个镜像标签
英文:
  • task: Docker@2
    inputs:
    containerRegistry: 'my-registry'
    repository: '$(System.TeamProject)/$(Build.Repository.Name)'
    command: 'buildAndPush'
    Dockerfile: 'Dockerfile'
    tags: |
    $(Build.SourceVersion)
    $(Build.SourceBranchName)

is it possible to do multiple tags for one image build?

Need to add multiple image tag for one docker build in azure pipelines

答案1

得分: 1

你的问题包含了答案:

标签: |
$(Build.SourceVersion)
$(Build.SourceBranchName)
更多标签在此处添加

英文:

your question contains the answer:

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

huangapple
  • 本文由 发表于 2023年6月8日 20:10:28
  • 转载请务必保留本文链接:https://go.coder-hub.com/76431732.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定