How one can Create an AWS ECR Repository in AWS CLI
September 13, 2022 · 1 min · 32 phrases · Andrew
If you must create an Elastic Container Registry (ECR) Repository from the AWS CLI, you are able to do the next:
aws ecr create-repository
--repository-name <repo-name>
--image-scanning-configuration scanOnPush=true
--region ${AWS_REGION}