我将Docker镜像推送到AWS ECR中。有没有办法在与此存储库关联的EC2实例中使其可用(即可与各种docker
CLI命令一起使用)?
作为一个例子,当我运行docker images
时,我没有查看我刚刚在图像列表中使用docker push <Repository URI>
推送的新图像
将图像推送到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
希望这可以帮助