什么时候该用这个 docker-autoremove-suggests?
用来恢复缺失的默认文件、确认发行版本带了什么,或拿你的 APT config 做 diff。
# Since Docker users are looking for the smallest possible final images, the # following emerges as a very common pattern: # RUN apt-get update \ # && apt-get install -y <packages> \ # && <do some compilation work> \ # && apt-get purge -y --auto-remove <packages> # By default, APT will actually _keep_ packages installed via Recommends or # Depends if another package Suggests them, even and including if the package # that originally caused them to be installed is removed. Setting this to # "false" ensures that APT is appropriately aggressive about removing the # packages it added. # https://aptitude.alioth.debian.org/doc/en/ch02s05s05.html#configApt-AutoRemove-SuggestsImportant Apt::AutoRemove::SuggestsImportant "false";
curl https://exampleconfig.com/api/v1/config/original/e99ea2a4a8db4dd2b5b90a60670d4fe0?hint=docker-autoremove-suggests
wget -O docker-autoremove-suggests https://exampleconfig.com/api/v1/config/original/e99ea2a4a8db4dd2b5b90a60670d4fe0?hint=docker-autoremove-suggests
<prompt><role>DevOps agent</role><source url='https://exampleconfig.com/api/v1/config/original/e99ea2a4a8db4dd2b5b90a60670d4fe0?hint=docker-autoremove-suggests' /><config><app>APT</app><os>Debian 10 (Buster)</os><location>/etc/apt/apt.conf.d/docker-autoremove-suggests</location><lines>16</lines><md5>e99ea2a4a8db4dd2b5b90a60670d4fe0</md5><sha256>84cb100b000873f25f677cf23ab51f841eb490264fa496361591d6071aebf0f4</sha256></config></prompt>
粘贴到 Claude、ChatGPT 或任何 AI 助手里。
sudo apt update && sudo apt install apt
sudo apt update && sudo apt install apt
什么时候该用这个 docker-autoremove-suggests?
用来恢复缺失的默认文件、确认发行版本带了什么,或拿你的 APT config 做 diff。
怎么恢复 APT 的默认配置?
下载文件,把 /etc/apt/apt.conf.d/docker-autoremove-suggests 里的当前配置备份好,替换掉,然后 reload 或 restart APT。
docker-autoremove-suggests 适合直接上生产吗?
这是 Debian 10 (Buster) 的厂商默认配置,只能当基线。上生产前请检查安全和性能设置。
和其他 OS 版本有什么不同?
默认值会随发行版和版本变化,这份对应 Debian 10 (Buster)。
我可以用它来排查 APT 吗?
可以。和你的配置做 diff 找出漂移,然后只恢复需要的段落。