├── .gitignore ├── Dockerfile ├── README.md ├── _entrypoint.sh ├── run.sh └── squid.conf.template /.gitignore: -------------------------------------------------------------------------------- 1 | squid.conf 2 | *.deb -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtuald/docker-registry-cache/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtuald/docker-registry-cache/HEAD/README.md -------------------------------------------------------------------------------- /_entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtuald/docker-registry-cache/HEAD/_entrypoint.sh -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtuald/docker-registry-cache/HEAD/run.sh -------------------------------------------------------------------------------- /squid.conf.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/virtuald/docker-registry-cache/HEAD/squid.conf.template --------------------------------------------------------------------------------