A Buildkite plugin to pull Docker images from private ECR repository.
The following pipeline pulls the image with latest
tag from ECR repository my-repo
:
steps:
- plugins:
- Shuttl-Tech/ecr-pull#v1.0.0:
repository: my-repo
Multiple tags can be pulled as well:
steps:
- plugins:
- Shuttl-Tech/ecr-pull#v1.0.0:
repository: my-repo
tags: [ "latest", "ft-1190" ]
-
repository
(required, string)Name of the ECR repository.
-
region
(optional, string)Region the ECR registry is in, defaults to
$AWS_DEFAULT_REGION
and then to the AWS region of build agent if not set. -
tags
(optional, array|string)Tags to pull.
Default:
latest