Объяснение команды "--upgrade add" для Alpine Linux
Я пытаюсь понять Dockerfile https://hub.docker.com/r/rdsubhas/tor-privoxy-alpine/~/dockerfile/, который содержит RUN
исполнительный с
apk --update add privoxy tor@testing runit@testing
Я хотел проверить мое понимание того, как apk
Команда используется, поэтому я попытался открыть терминал в среде Alpine следующим образом:
docker run -it --rm alpine:latest /bin/ash
после чего я просто побежал apk
чтобы увидеть его использование:
/ # apk
apk-tools 2.6.8, compiled for x86_64.
usage: apk COMMAND [-h|--help] [-p|--root DIR] [-X|--repository REPO]
[-q|--quiet] [-v|--verbose] [-i|--interactive] [-V|--version]
[-f|--force] [-U|--update-cache] [--progress] [--progress-fd FD]
[--no-progress] [--purge] [--allow-untrusted] [--wait TIME]
[--keys-dir KEYSDIR] [--repositories-file REPOFILE] [--no-network]
[--no-cache] [--arch ARCH] [--print-arch] [ARGS]...
The following commands are available:
add Add PACKAGEs to 'world' and install (or upgrade) them, while
ensuring that all dependencies are met
del Remove PACKAGEs from 'world' and uninstall them
fix Repair package or upgrade it without modifying main dependencies
update Update repository indexes from all remote repositories
info Give detailed information about PACKAGEs or repositores
search Search package by PATTERNs or by indexed dependencies
upgrade Upgrade currently installed packages to match repositories
cache Download missing PACKAGEs to cache and/or delete unneeded files
from cache
version Compare package versions (in installed database vs. available) or
do tests on literal version strings
index Create repository index file from FILEs
fetch Download PACKAGEs from global repositories to a local directory
audit Audit the directories for changes
verify Verify package integrity and signature
dot Generate graphviz graphs
policy Show repository policy for packages
stats Show statistics about repositories and installations
Global options:
-h, --help Show generic help or applet specific help
-p, --root DIR Install packages to DIR
-X, --repository REPO Use packages from REPO
-q, --quiet Print less information
-v, --verbose Print more information (can be doubled)
-i, --interactive Ask confirmation for certain operations
-V, --version Print program version and exit
-f, --force Do what was asked even if it looks dangerous
-U, --update-cache Update the repository cache
--progress Show a progress bar
--progress-fd FD Write progress to fd
--no-progress Disable progress bar even for TTYs
--purge Delete also modified configuration files (pkg
removal) and uninstalled packages from cache (cache
clean)
--allow-untrusted Install packages with untrusted signature or no
signature
--wait TIME Wait for TIME seconds to get an exclusive repository
lock before failing
--keys-dir KEYSDIR Override directory of trusted keys
--repositories-file REPOFILE Override repositories file
--no-network Do not use network (cache is still used)
--no-cache Read uncached index from network
--arch ARCH Use architecture with --root
--print-arch Print default arch and exit
This apk has coffee making abilities.
Дело в том, что я не вижу --update
опция в этой документации (только --update-cache
).
Я подозреваю, что apk --update add [package]
это просто сокращение для apk update
с последующим apk add [package]
, Кто-нибудь может это подтвердить?
1 ответ
Короче:
To get the latest list of available packages, use the update command.
это похоже на Debian apt-get update
что вы делаете раньше apt-get install my_package
,
из https://wiki.alpinelinux.org/wiki/Alpine_Linux_package_management:
экстракт
Обновить список пакетов
Удаленные репозитории меняются по мере добавления и обновления пакетов. Чтобы получить последний список доступных пакетов, используйте команду обновления. Команда загружает APKINDEX.tar.gz из каждого хранилища и сохраняет его в локальном кэше, обычно это /var/cache/apk/, /var/lib/apk/ или / etc / apk / cache /.
апк обновление
Совет: если вы используете удаленные репозитории, рекомендуется выполнить обновление непосредственно перед выполнением команды добавления или обновления. Таким образом, вы знаете, что используете новейшее доступное программное обеспечение.
См. https://github.com/gliderlabs/docker-alpine/pull/503
apk --update - это действительно --update-cache.
Apk использует getopt_long (3), https://github.com/alpinelinux/apk-tools/blob/v2.10.3/src/apk.c
Таким образом, флаг --update сокращен от --update-cache только getopt_long.
Длинные имена параметров могут быть сокращены, если сокращение является уникальным или полностью совпадает с определенным параметром.