Amazon Elastic Container Registry (ECR)
AWS에서 제공하는 Docker Registry 서비스
login
aws ecr get-login-password --region ap-northeast-2 | docker login --username AWS --password-stdin [ECR-URI]
tag
docker tag hello-world:latest [ECR-URI]/hello-world:latest
push
docker push [ECR-URI]/hello-world:latest
pull
docker pull [ECR-URI]/hello-world:latest