ACTS Blog Selection
We use machine learning technology to do auto-translation. Click "English" on top navigation bar to check Chinese version.
New: Amazon Web Services CLI v2 Docker images available on Amazon ECR Public
We are excited to announce that
Amazon ECR Public offers reliable availability around the world via geo-replication. Data transferred from a public repository is free up to the limits specified (and can be done anonymously). For information on free tiers and pricing, please visit the Amazon Elastic Container Registry (Amazon ECR)
To pull the Amazon Web Services CLI v2 images from Amazon ECR Public, you can pass the repository’s URI to a docker pull command. For example, to pull the latest version of the Amazon Web Services CLI v2:
$ docker pull public.ecr.aws/aws-cli/aws-cli:latest
And to pull a specific version:
$ docker pull public.ecr.aws/aws-cli/aws-cli:2.9.1
The interface for using the Docker image remains unchanged. Simply point to the image pulled from Amazon ECR Public and the passed arguments will be proxied to the Amazon Web Services CLI inside of the container. The following example is equivalent to running aws --version
:
$ docker run --rm -it public.ecr.aws/aws-cli/aws-cli:2.9.1 --version
aws-cli/2.9.1 Python/3.9.11 Linux/5.10.47-linuxkit docker/aarch64.amzn.2 prompt/off
For more information, please visit the