From 5c30ac5586149aab73b4a7cff0a97685c382ae48 Mon Sep 17 00:00:00 2001 From: "J. Lowell Wofford" Date: Mon, 14 Nov 2022 15:28:41 -0600 Subject: [PATCH] remove ecr console check to avoid error (#361) --- content/05-cicd-pipeline/06-updatebuild.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/content/05-cicd-pipeline/06-updatebuild.md b/content/05-cicd-pipeline/06-updatebuild.md index d1713e84..509608df 100644 --- a/content/05-cicd-pipeline/06-updatebuild.md +++ b/content/05-cicd-pipeline/06-updatebuild.md @@ -127,10 +127,10 @@ git push origin main 9. In addition to the build the pipeline is also pushing the built container image to the container registry in Amazon ECR. -Once the build has completed you should be able to see that a container exists in the ECR repository tagged as **latest**: -1. Open the [Amazon ECR console](https://console.aws.amazon.com/ecr/repositories), and make sure the N. Virgia region is selected. -2. Select **sc22-container** +You can view information on the ECR repository with by running: -You should see an entry like: +```bash +aws ecr describe-repostitories +``` -![AWS CodePipeline](/images/cicd/updatebuild-1.png?width=50pc) +This will return a JSON formatted object describing the repository and its contents.