我将Docker映像推送到AWS ECR中。有没有办法使它在与此存储库相关联的EC2实例中可用(即可以与各种docker
CLI命令一起使用)?
例如,当我运行docker images
时,我没有查看图像列表中使用docker push <Repository URI>
推送的新图像
答案 0 :(得分: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
希望这会有所帮助