aws ecr에 이미지 등록시키기

aws ecr에 이미지 등록시키기

아래 처럼 도커이미지 빌드를 완성한후에

1
docker build -t hello-world:latest ./
1
2
3
aws ecr get-login-password --region region | docker login --username AWS --password-stdin aws_account_id.dkr.ecr.region.amazonaws.com
docker tag hello-world:latest aws_account_id.dkr.ecr.us-east-1.amazonaws.com/hello-world:latest
docker push aws_account_id.dkr.ecr.us-east-1.amazonaws.com/hello-world:latest

위와 같은 명령어로 처리를 하면 ecr에 이미지가 등록이 된다.

참고자료