YAML for Build multi-arch image

Build multi-arch Docker image using Dockerfile.

YAML parameters for Build multi-arch image

PARAMETERS
dockerfile_pathrequiredstring
The path to the Dockerfile.
typerequiredstring

Value: DOCKER_BUILD_MULTI_ARCH

actionrequiredstring
Unique identifier for the action within the pipeline.
integrationstring
Integration identifier for cloud provider authentication.
context_pathstring
The path to the Docker build context.
build_argsstring[]
The list of build arguments to pass to the Docker build.
secret_idstring
The ID of the secret to pass to the Docker build.
secret_srcstring
The source path of the secret file.
repositorystring
The Docker repository name.
versionsstring[]
The list of image versions/tags to build.
cache_modestring enum
The cache mode for the Docker build.
Allowed enum:
MIN,
MAX
target_platformstring
The target platform for the Docker build (e.g., linux/amd64, linux/arm64).
regionstring
Cloud region for the build (when using cloud integrations).
docker_image_tagstring
The tag of the Docker image.
docker_registrystring enum
The type of registry from which the image is retrieved.
Allowed enum:
NONE,
DOCKER_HUB,
AMAZON_ECR,
GOOGLE_GCR,
GOOGLE_ARTIFACT_REGISTRY,
OTHER,
GIT_HUB_CONTAINER_REGISTRY,
ARTIFACT_REGISTRY,
DIGITAL_OCEAN_CONTAINER_REGISTRY
artifactstring
The identifier of the artifact from artifact registry.
registrystring
The URL of the Docker registry.
target_stagestring
The target stage of the Dockerfile.
loginstring
The username for the Docker registry.
passwordstring
The password for the Docker registry.
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 Build multi-arch image

Build multi-architecture Docker image

yaml
- action: "Build multi-arch image" type: "DOCKER_BUILD_MULTI_ARCH" dockerfile_path: "Dockerfile" context_path: "." repository: "my-app" versions: - "latest" - "$BUDDY_EXECUTION_REVISION" target_platform: "linux/amd64,linux/arm64" docker_registry: "DOCKER_HUB" build_args: - "NODE_ENV=production" - "APP_VERSION=$BUDDY_EXECUTION_REVISION" integration: "my_docker_hub"

Simple multi-arch Docker build

yaml
- action: "Build multi-arch" type: "DOCKER_BUILD_MULTI_ARCH" dockerfile_path: "Dockerfile" repository: "my-app" target_platform: "linux/amd64,linux/arm64" integration: "my_integration"