├── .dockerignore ├── .gitignore ├── Dockerfile ├── README.md ├── cache.png ├── entrypoint.sh ├── s6 ├── .s6-svscan │ ├── crash │ └── finish ├── apt-cacher-ng │ └── run ├── cron │ └── run └── rsyslogd │ └── run └── util └── prune_hub_tags.sh /.dockerignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | .git 3 | .DS_Store 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbentley/docker-apt-cacher-ng/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbentley/docker-apt-cacher-ng/HEAD/README.md -------------------------------------------------------------------------------- /cache.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbentley/docker-apt-cacher-ng/HEAD/cache.png -------------------------------------------------------------------------------- /entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbentley/docker-apt-cacher-ng/HEAD/entrypoint.sh -------------------------------------------------------------------------------- /s6/.s6-svscan/crash: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | echo "Executing .s6-svscan/crash with arguments ${*}" 4 | -------------------------------------------------------------------------------- /s6/.s6-svscan/finish: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # do nothing 4 | echo "Executing .s6-svscan/finish with arguments ${*}" 5 | -------------------------------------------------------------------------------- /s6/apt-cacher-ng/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbentley/docker-apt-cacher-ng/HEAD/s6/apt-cacher-ng/run -------------------------------------------------------------------------------- /s6/cron/run: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | exec /usr/sbin/cron -f -L 15 4 | -------------------------------------------------------------------------------- /s6/rsyslogd/run: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | exec /usr/sbin/rsyslogd -n -iNONE 4 | -------------------------------------------------------------------------------- /util/prune_hub_tags.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mbentley/docker-apt-cacher-ng/HEAD/util/prune_hub_tags.sh --------------------------------------------------------------------------------