TODO: make this generic
- If you haven't, create your mirror ECRs. Make sure they're public
- Open the Cloud9 IDE
- Run the commands below to pull the public images and push them up for our own personal reuse
$ docker pull golang:1.15
$ docker pull python:3
$ docker pull amazonlinux:latest
$ docker tag python:3 public.ecr.aws/l1p5w9g7/my-mirrors/python:3
$ docker tag golang:1.15 public.ecr.aws/l1p5w9g7/my-mirrors/golang:1.15
$ docker tag amazonlinux:latest public.ecr.aws/l1p5w9g7/my-mirrors/amazonlinux:latest
$ aws ecr-public get-login-password --region us-east-1 | docker login --username AWS --password-stdin public.ecr.aws/l1p5w9g7
$ docker push public.ecr.aws/l1p5w9g7/my-mirrors/python:3
$ docker push public.ecr.aws/l1p5w9g7/my-mirrors/golang:1.15
$ docker push public.ecr.aws/l1p5w9g7/my-mirrors/amazonlinux:latest