JFrog Artifactory · Arazzo Workflow

Artifactory Promote Docker Image

Version 1.0.0

Promote a Docker image to a target repository, then list its tags to verify.

1 workflow 2 source APIs 1 provider
View Spec View on GitHub ArtifactsDevOpsCI/CDdocker-registryMavenPackage ManagementRepositoryArazzoWorkflows

Provider

artifactory

Workflows

promote-docker-image
Promote a Docker image and tag, then verify by listing tags.
Promotes a Docker image and tag from a source repository to a target repository and lists the tags in the target image to confirm the tag exists.
2 steps inputs: accessToken, dockerRepository, repoKey, tag, targetRepo outputs: promoteStatus, tags
1
promoteImage
Promote the Docker image and tag from the source repository to the target repository using the Artifactory promotion extension.
2
listTags
List the tags for the promoted image in the target repository to confirm the tag is present.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Artifactory Promote Docker Image
  summary: Promote a Docker image to a target repository, then list its tags to verify.
  description: >-
    A Docker release flow for JFrog Artifactory. The workflow uses the
    Artifactory Docker promotion extension to copy an image and tag from a source
    repository to a target repository, then lists the image tags in the target
    repository to confirm the promotion landed. Every step spells out its request
    inline so the flow can be read and executed without opening the underlying
    OpenAPI description.
  version: 1.0.0
sourceDescriptions:
- name: artifactoryExtensionsApi
  url: ../openapi/artifactory-artifactory-extensions-api-openapi.yml
  type: openapi
- name: tagsApi
  url: ../openapi/artifactory-tags-api-openapi.yml
  type: openapi
workflows:
- workflowId: promote-docker-image
  summary: Promote a Docker image and tag, then verify by listing tags.
  description: >-
    Promotes a Docker image and tag from a source repository to a target
    repository and lists the tags in the target image to confirm the tag exists.
  inputs:
    type: object
    required:
    - accessToken
    - repoKey
    - dockerRepository
    - tag
    - targetRepo
    properties:
      accessToken:
        type: string
        description: Bearer token for authenticating with the Artifactory Docker registry.
      repoKey:
        type: string
        description: The source repository key the image currently lives in.
      dockerRepository:
        type: string
        description: The Docker image path/name to promote (e.g. myproject/myimage).
      tag:
        type: string
        description: The image tag to promote.
      targetRepo:
        type: string
        description: The target repository key to promote the image to.
  steps:
  - stepId: promoteImage
    description: >-
      Promote the Docker image and tag from the source repository to the target
      repository using the Artifactory promotion extension.
    operationId: promoteDockerImage
    parameters:
    - name: Authorization
      in: header
      value: Bearer $inputs.accessToken
    - name: repoKey
      in: path
      value: $inputs.repoKey
    requestBody:
      contentType: application/json
      payload:
        targetRepo: $inputs.targetRepo
        dockerRepository: $inputs.dockerRepository
        targetDockerRepository: $inputs.dockerRepository
        tag: $inputs.tag
        copy: true
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      promoteStatus: $statusCode
  - stepId: listTags
    description: >-
      List the tags for the promoted image in the target repository to confirm
      the tag is present.
    operationId: listTags
    parameters:
    - name: Authorization
      in: header
      value: Bearer $inputs.accessToken
    - name: name
      in: path
      value: $inputs.dockerRepository
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      imageName: $response.body#/name
      tags: $response.body#/tags
  outputs:
    promoteStatus: $steps.promoteImage.outputs.promoteStatus
    tags: $steps.listTags.outputs.tags

Work with this as data

Every workflow here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for arazzo workflows

4 MCP tools reach this
  • find_arazzoBrowse and filter every workflow in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This workflow
curl "https://apis.io/api/v1/arazzo/artifactory-promote-docker-image-workflow"
All arazzo workflows
curl "https://apis.io/api/v1/arazzo?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.