EC2 CLI docker中提供的AWS ECR映像

问题描述 投票:0回答:1

我将Docker镜像推送到AWS ECR中。有没有办法在与此存储库关联的EC2实例中使其可用(即可与各种docker CLI命令一起使用)?

作为一个例子,当我运行docker images时,我没有查看我刚刚在图像列表中使用docker push <Repository URI>推送的新图像

amazon-web-services docker
1个回答
1
投票

将图像推送到ECS后,您必须拉动图像以将其作为容器运行。这可以在任何实例或本地计算机上完成。为此,您可以遵循:

1. aws ecr get-login --no-include-email --region <region> --profile <profile_name>
2. Cope the output from above and paste + enter
3. Pull the image finally as --> docker pull 501429058813.dkr.ecr.us-east-1.amazonaws.com/main:v1.0.0

希望这可以帮助

© www.soinside.com 2019 - 2024. All rights reserved.