├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── main.go ├── optparse.go └── registry.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samalba/docker-registry-debug/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samalba/docker-registry-debug/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samalba/docker-registry-debug/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samalba/docker-registry-debug/HEAD/README.md -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samalba/docker-registry-debug/HEAD/main.go -------------------------------------------------------------------------------- /optparse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samalba/docker-registry-debug/HEAD/optparse.go -------------------------------------------------------------------------------- /registry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samalba/docker-registry-debug/HEAD/registry.go --------------------------------------------------------------------------------