Skip to content

Instantly share code, notes, and snippets.

@siakon89
Created June 18, 2018 16:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save siakon89/f93290ff13a85d5c370e5bd506a5ab97 to your computer and use it in GitHub Desktop.
Save siakon89/f93290ff13a85d5c370e5bd506a5ab97 to your computer and use it in GitHub Desktop.
# log in to ECR and create repository
%%sh
aws ecr describe-repositories --repository-names $repo_name > /dev/null 2>&1
if [ $? -ne 0 ]
then
aws ecr create-repository --repository-name $repo_name > /dev/null
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment