- Le plus récent
- Le plus de votes
- La plupart des commentaires
You can push or pull images to or from an Amazon ECR repository in another account. First, you must create a policy that allows the secondary account to perform API calls against the repository. Then, use a Docker authentication token generated from the secondary account to use push and pull commands against the primary account's repository.
More information: https://aws.amazon.com/premiumsupport/knowledge-center/secondary-account-access-ecr/
Have you thought about cross account ECR replication? You could replicate the images to the local account, from the remote account, and then ECS could pull them.
répondu il y a 4 ans
These two stack overflow articles detail how to actually implement cross-account access via IAM. Two key things: make sure your repository policy allows access from the ARN of the task EXECUTION role, not the task role, and vice versa.
répondu il y a 4 ans
Thanks all, I've managed to work out this now and this youtube tutorial is helpful too. Ref: https://www.youtube.com/watch?v=YvqImD7pe9g&ab_channel=AmazonWebServices
répondu il y a 4 ans
Contenus pertinents
demandé il y a 3 ans
demandé il y a 3 ans
demandé il y a 2 ans
- AWS OFFICIELA mis à jour il y a 2 ans

Yep, it works for me. Thank you!