├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── gc ├── gc.go └── gc_test.go ├── go.mod ├── go.sum ├── main.go ├── model └── image.go └── registry └── ecr.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/99designs/aws-ecr-gc/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/99designs/aws-ecr-gc/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/99designs/aws-ecr-gc/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/99designs/aws-ecr-gc/HEAD/README.md -------------------------------------------------------------------------------- /gc/gc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/99designs/aws-ecr-gc/HEAD/gc/gc.go -------------------------------------------------------------------------------- /gc/gc_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/99designs/aws-ecr-gc/HEAD/gc/gc_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/99designs/aws-ecr-gc/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/99designs/aws-ecr-gc/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/99designs/aws-ecr-gc/HEAD/main.go -------------------------------------------------------------------------------- /model/image.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/99designs/aws-ecr-gc/HEAD/model/image.go -------------------------------------------------------------------------------- /registry/ecr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/99designs/aws-ecr-gc/HEAD/registry/ecr.go --------------------------------------------------------------------------------