はじめに
ECR に Docker の image を build して push するまでの手順を記します。
1. image の build
docker build -t {ECRのリポジトリ名} .
2. image の push
- で build した image にタグ付
docker tag {ECRのリポジトリ名}:latest {ECR の URI(xxxxxxxxxx.dkr.ecr.ap-northeast-1.amazonaws.com/リポジトリ名)}
ECR にログイン
aws ecr get-login-password --region ap-northeast-1 | docker login --username AWS --password-stdin xxxxxxxxxx.dkr.ecr.ap-northeast-1.amazonaws.com
ECR に push
docker push xxxxxxxxx.dkr.ecr.ap-northeast-1.amazonaws.com/リポジトリ名