aws ecr - authenticating against ECR
Download and setup aws cli. Once you got that, please issue the following command to get acr password.
aws ecr get-login-password --region ap-southeast-2
Then you can use the following command to login to your ECR region
docker login --username AWS your-registry-southeast-2.amazonaws.com
Then paste your password, you obtained from above.
Comments