APT Configuration - Linux
/etc/apt/apt.conf.d/docker-clean
Quick Actions
๐ฅ Download Original docker-cleanConfiguration File Information
Authentic & Original
Unaltered docker-clean from fresh installation.
Linux Distribution Support
๐ Currently viewing: Debian 10 (Buster)
โ Also compatible:
Debian 11 (Bullseye),
Debian 12 (Bookworm),
Debian 9 (Stretch)
โ Different versions:
Debian:
Configuration File Content
20 lines
# Since for most Docker users, package installs happen in "docker build" steps,
# they essentially become individual layers due to the way Docker handles
# layering, especially using CoW filesystems. What this means for us is that
# the caches that APT keeps end up just wasting space in those layers, making
# our layers unnecessarily large (especially since we'll normally never use
# these caches again and will instead just "docker build" again and make a brand
# new image).
# Ideally, these would just be invoking "apt-get clean", but in our testing,
# that ended up being cyclic and we got stuck on APT's lock, so we get this fun
# creation that's essentially just "apt-get clean".
DPkg::Post-Invoke { "rm -f /var/cache/apt/archives/*.deb /var/cache/apt/archives/partial/*.deb /var/cache/apt/*.bin || true"; };
APT::Update::Post-Invoke { "rm -f /var/cache/apt/archives/*.deb /var/cache/apt/archives/partial/*.deb /var/cache/apt/*.bin || true"; };
Dir::Cache::pkgcache "";
Dir::Cache::srcpkgcache "";
# Note that we do realize this isn't the ideal way to do this, and are always
# open to better suggestions (https://github.com/debuerreotype/debuerreotype/issues).
Download Commands
docker-clean โข
Download the 100% original unaltered configuration file pulled from APT
Using wget:
wget -O docker-clean.example https://exampleconfig.com/api/v1/config/original/aafe213f11482d9cdc6b0c19a86c93ac?hint=docker-clean
Using curl:
curl https://exampleconfig.com/api/v1/config/original/aafe213f11482d9cdc6b0c19a86c93ac?hint=docker-clean > docker-clean.example
Related Configuration Files
/etc/apt/apt.conf.d/docker-clean
APT ยท Debian 9 (Stretch)
/etc/apt/apt.conf.d/docker-clean
APT ยท Debian 9 (Stretch)
/etc/apt/apt.conf.d/docker-clean
APT ยท Debian 9 (Stretch)
/etc/apt/apt.conf.d/docker-clean
NGINX ยท Debian 10 (Buster)
/etc/apt/apt.conf.d/docker-clean
NGINX ยท Debian 10 (Buster)
/etc/apt/apt.conf.d/docker-clean
NGINX ยท Debian 10 (Buster)