Skip to content

Latest commit

 

History

History
62 lines (42 loc) · 1.95 KB

apk-cache.8.scd

File metadata and controls

62 lines (42 loc) · 1.95 KB

apk-cache(8)

NAME

apk cache - manage a local cache of package files

SYNOPSIS

apk cache [<options>...] clean

apk cache [<options>...] download [dependency...]

apk cache [<options>...] purge

apk cache [<options>...] sync [dependency...]

DESCRIPTION

Manage local package cache by removing obsolete packages, or downloading missing or newer packages from the repositories.

apk cache download will fetch package files from the repositories and store them in the cache, which must be enabled upfront (see apk-cache(5)). By default world dependencies are used to determine what to download. If dependency arguments are given, they will by default replace the world.

apk cache clean will remove package files which no longer exist in any repository index. Specifying the global option --purge will additionally remove all uninstalled package on tmpfs installations, and all packages on disk installations.

apk cache purge is a synonym for clean --purge.

apk cache sync performs both operations.

OPTIONS

--add-dependencies Add the argument dependencies to world dependencies when determining which packages to download.

-a, --available Selected packages to be downloaded from active repositories even if it means replacing or downgrading the installed package.

--ignore-conflict Ignore conflicts when resolving dependencies. This can be useful when pre-populating cache for creation of multiple images in one go.

-l, --latest Always choose the latest package by version. However, the versions considered are based on the package pinning. Primarily this overrides the default heuristic and will cause an error to displayed if all dependencies cannot be satisfied.

-u, --upgrade When caching packages which are already installed, prefer their upgrades rather than considering the requirement fulfilled by the current installation.

-s, --simulate Simulate the requested operation without making any changes.