Include:Using Internet Repositories for apk-tools: Difference between revisions
No edit summary |
mNo edit summary |
||
Line 5: | Line 5: | ||
http://dl-3.alpinelinux.org/alpine/v3.3/main}} | http://dl-3.alpinelinux.org/alpine/v3.3/main}} | ||
To upgrade, | To upgrade, in this example, from version 3.3 to 3.4, simply change: | ||
<code><nowiki>http://dl-3.alpinelinux.org/alpine/v3.3/main</nowiki></code> | <code><nowiki>http://dl-3.alpinelinux.org/alpine/v3.3/main</nowiki></code> | ||
to | to | ||
Line 16: | Line 16: | ||
{{Note|Starting with version 3.3, there is a new repository called '''community'''. Many packages have been moved from the main repository to the community repository to indicate that they are not guaranteed to be supported beyond six months. If you are using any of these packages, be sure to add the community repository. For example: <code><nowiki>http://dl-3.alpinelinux.org/alpine/v3.3/community</nowiki></code>}} | {{Note|Starting with version 3.3, there is a new repository called '''community'''. Many packages have been moved from the main repository to the community repository to indicate that they are not guaranteed to be supported beyond six months. If you are using any of these packages, be sure to add the community repository. For example: <code><nowiki>http://dl-3.alpinelinux.org/alpine/v3.3/community</nowiki></code>}} | ||
Above, only one possible repository is shown, however, <code><nowiki>http://dl-3.alpinelinux.org/alpine/</nowiki></code> may also be replaced with any | Above, only one possible repository is shown, however, <code><nowiki>http://dl-3.alpinelinux.org/alpine/</nowiki></code> may also be replaced with any geographically close mirror from: | ||
<code><nowiki>http://rsync.alpinelinux.org/alpine/MIRRORS.txt</nowiki></code> | <code><nowiki>http://rsync.alpinelinux.org/alpine/MIRRORS.txt</nowiki></code> | ||
Revision as of 12:42, 5 July 2021
Edit the /etc/apk/repositories file using an editor (nano for instance) and if necessary, add references to the Alpine package repositories. In the example below, the file references the Alpine CD, so that if a requested package is available on the local media, it will be obtained from there instead of being downloaded from the remote repository:
Contents of /etc/apk/repositories
To upgrade, in this example, from version 3.3 to 3.4, simply change:
http://dl-3.alpinelinux.org/alpine/v3.3/main
to
http://dl-3.alpinelinux.org/alpine/v3.4/main
So that the file will look like this:
Contents of /etc/apk/repositories
http://dl-3.alpinelinux.org/alpine/v3.3/community
Above, only one possible repository is shown, however, http://dl-3.alpinelinux.org/alpine/
may also be replaced with any geographically close mirror from:
http://rsync.alpinelinux.org/alpine/MIRRORS.txt
After updating the repositories file, the latest index of available packages can be obtained with:
apk update
-U
/--update-cache
to another apk command, as in apk add -U ...
or apk upgrade -U
, has the same effect as running apk update
before the other apk command.