mozyのかきおき

mozyの読書感想文や思考置き場

【解決】circleci で registry with id 'XXXXXXXXXXXX' already has the maximum allowed number of images which is '1000' とか言われた時

経緯

circleci でCIを回していたら、以下のようなエラーがでて止まった。

denied: The repository with name 'mozy/app-name' in registry with id 'XXXXXXXXXXXX' already has the maximum allowed number of images which is '1000'
Exited with code 1

原因と解決方法

なるほど。ECRのリポジトリごとのimage数の上限って、1000個なのね。 Maximum number of images per repository : 1,000

Amazon ECR Service Limits - Amazon ECR

そのためコンソールに入ってimageをぽちぽち消して行けば解消する。
もしくは緩和申請をすれば解決する。

そもそも、CIを回した時に消すような設定にしておけばこんなことは起こらない😪