APT /etc/apt/apt.conf.d/docker-gzip-indexes

原始 📋 Debian 9 (Stretch) 10 行

适用于

当前查看:
Debian 9 (Stretch)
相同于:
Debian 10 (Buster) Debian 11 (Bullseye) Debian 12 (Bookworm) Debian 13 (Trixie)
其他版本:

详情

大小
10 行
MD5
2b32d08be3b653925c80f5ded1175ab8
SHA256
9da4604fbac169caa47e787b4d85c8e06c887603878afa2a61f39fd551a41359
/etc/apt/apt.conf.d/docker-gzip-indexes
# Since Docker users using "RUN apt-get update && apt-get install -y ..." in
# their Dockerfiles don't go delete the lists files afterwards, we want them to
# be as small as possible on-disk, so we explicitly request that Apt keep them
# compressed on-disk too instead of decompressing them.

# For comparison, an "apt-get update" layer without this on a pristine
# "debian:wheezy" base image was "29.88 MB", where with this it was only
# "8.273 MB".

Acquire::GzipIndexes "true";

复制粘贴

curl:
curl https://exampleconfig.com/api/v1/config/original/2b32d08be3b653925c80f5ded1175ab8?hint=docker-gzip-indexes
wget:
wget -O docker-gzip-indexes https://exampleconfig.com/api/v1/config/original/2b32d08be3b653925c80f5ded1175ab8?hint=docker-gzip-indexes

给 AI Agent 用

<prompt><role>DevOps agent</role><source url='https://exampleconfig.com/api/v1/config/original/2b32d08be3b653925c80f5ded1175ab8?hint=docker-gzip-indexes' /><config><app>APT</app><os>Debian 9 (Stretch)</os><location>/etc/apt/apt.conf.d/docker-gzip-indexes</location><lines>10</lines><md5>2b32d08be3b653925c80f5ded1175ab8</md5><sha256>9da4604fbac169caa47e787b4d85c8e06c887603878afa2a61f39fd551a41359</sha256></config></prompt>

粘贴到 Claude、ChatGPT 或任何 AI 助手里。

安装 APT

Debian

sudo apt update && sudo apt install apt

Ubuntu

sudo apt update && sudo apt install apt

文件位置

文件路径
/etc/apt/apt.conf.d/docker-gzip-indexes
目录
/etc/apt/apt.conf.d/
用途
系统级配置目录
说明
/etc/ 里的文件是系统级配置,影响所有用户。

FAQ

什么时候该用这个 docker-gzip-indexes?

用来恢复缺失的默认文件、确认发行版本带了什么,或拿你的 APT config 做 diff。

怎么恢复 APT 的默认配置?

下载文件,把 /etc/apt/apt.conf.d/docker-gzip-indexes 里的当前配置备份好,替换掉,然后 reload 或 restart APT。

docker-gzip-indexes 适合直接上生产吗?

这是 Debian 9 (Stretch) 的厂商默认配置,只能当基线。上生产前请检查安全和性能设置。

和其他 OS 版本有什么不同?

默认值会随发行版和版本变化,这份对应 Debian 9 (Stretch)。

我可以用它来排查 APT 吗?

可以。和你的配置做 diff 找出漂移,然后只恢复需要的段落。