YAML for Tag Docker Image

Tag and promote Docker image between registries.

YAML parameters for Tag Docker Image

PARAMETERS
srcrequiredPromoteImageYaml
The source Docker image to promote.
destrequiredPromoteImageYaml
The destination Docker image location.
typerequiredstring

Value: PROMOTE_IMAGE

actionrequiredstring
Unique identifier for the action within the pipeline.
same_locationboolean
If set to true, promotes the image within the same registry (only tag changes). If false, promotes between different registries.
trigger_timestring enum
Specifies when the action should be executed.
Allowed enum:
ON_EVERY_EXECUTION,
ON_SUCCESS,
ON_FAILURE,
ON_BACK_TO_SUCCESS,
ON_WARNING,
ON_WAIT_FOR_APPROVE,
ON_TERMINATE
loopstring[]
The list of variables for dynamic action execution. The action runs once for each value.
run_only_on_first_failureboolean
Defines whether the action should be executed on each failure. Restricted to and required if the trigger_time is ON_FAILURE.
disabledboolean
When set to true the action is disabled. By default it is set to false.
timeoutinteger
The timeout in seconds.
ignore_errorsboolean
If set to true the execution will proceed, mark action as a warning and jump to the next action. Doesn't apply to deployment actions.
retry_intervalinteger
Delay time between auto retries in seconds.
retry_countinteger
Number of retries if the action fails.
run_nextstring enum
Defines whether the action should run in parallel with the next one.
Allowed enum:
WAIT_ON_SUCCESS,
IN_SOFT_PARALLEL,
IN_HARD_PARALLEL
trigger_conditionsTriggerConditionYaml[]
The list of trigger conditions to meet so that the action can be triggered.
variablesVariableYaml[]
The list of variables you can use in the action.

Last modified on Jul 31, 2025

YAML examples for Tag Docker Image

Promote Docker image between registries

yaml
- action: "Promote Docker image" type: "PROMOTE_IMAGE" same_location: false src: docker_registry: "AMAZON_ECR" image: "my-app" tag: "$BUDDY_EXECUTION_REVISION" integration: "aws_source" region: "us-east-1" dest: docker_registry: "GOOGLE_GCR" image: "gcr.io/my-project/my-app" tag: "$BUDDY_EXECUTION_REVISION" integration: "gcp_dest" region: "us-central1"

Simple image promotion

yaml
- action: "Promote image" type: "PROMOTE_IMAGE" same_location: true src: docker_registry: "DOCKER_HUB" image: "my-app" tag: "staging" integration: "docker_hub" dest: tag: "production"

Promote from Google Artifact Registry to custom registry

yaml
- action: "Promote to private registry" type: "PROMOTE_IMAGE" same_location: false src: docker_registry: "GOOGLE_ARTIFACT_REGISTRY" registry: "us-central1-docker.pkg.dev" image: "my-gcp-project/my-repo/myapp:staging" integration: "google_service_account" dest: docker_registry: "OTHER" registry: "registry.mycompany.com" image: "mycompany/myapp:production" username: "deploy-user" password: "secure_password"

Promote from Docker Hub to Google Artifact Registry

yaml
- action: "Promote to Artifact Registry" type: "PROMOTE_IMAGE" same_location: false src: docker_registry: "DOCKER_HUB" image: "mycompany/myapp:v2.1.0" integration: "docker_hub" dest: docker_registry: "GOOGLE_ARTIFACT_REGISTRY" registry: "us-central1-docker.pkg.dev" image: "my-gcp-project/my-repo/myapp:production" integration: "google_service_account"

Promote from GitHub Container Registry to Amazon ECR

yaml
- action: "Promote from GHCR to ECR" type: "PROMOTE_IMAGE" same_location: false src: docker_registry: "GIT_HUB_CONTAINER_REGISTRY" image: "mycompany/myapp:latest" integration: "github_token" dest: docker_registry: "AMAZON_ECR" image: "123456789.dkr.ecr.us-east-1.amazonaws.com/myapp:production" integration: "aws_integration" region: "us-east-1"