aws ecr에 이미지 등록시키기
아래 처럼 도커이미지 빌드를 완성한후에
1 | docker build -t hello-world:latest ./ |
1 | aws ecr get-login-password --region region | docker login --username AWS --password-stdin aws_account_id.dkr.ecr.region.amazonaws.com |
위와 같은 명령어로 처리를 하면 ecr에 이미지가 등록이 된다.