We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
먼저 AWS Elastic Container Registry (이하 ECR) 에 {image}라는 repository 가 있는지 확인한다.
$ aws ecr describe-images --repository-name {image}
없다면 만든다.
$ aws ecr create-repository --repository-name {image}
local 에 {image} 가 없어서 에러가 나는 것이므로 local 에 {image} 를 pull 한다.
$ docker pull {account_id}.dkr.ecr.{region}.amazonaws.com/{image}:{tag}
보통 태그는 latest를 붙여서 가져온다.
latest
The text was updated successfully, but these errors were encountered:
No branches or pull requests
먼저 AWS Elastic Container Registry (이하 ECR) 에 {image}라는 repository 가 있는지 확인한다.
없다면 만든다.
local 에 {image} 가 없어서 에러가 나는 것이므로 local 에 {image} 를 pull 한다.
보통 태그는
latest
를 붙여서 가져온다.The text was updated successfully, but these errors were encountered: