Revision history of "Installing Docker on a Debian-based system"

Jump to navigation Jump to search

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

  • curprev 16:26, 1 August 2024Tinker talk contribs 1,086 bytes +1,086 Created page with "Add Docker's official GPG key: * <code>sudo apt-get update</code> * <code>sudo apt-get install ca-certificates curl</code> * <code>sudo install -m 0755 -d /etc/apt/keyrings</code> * <code>sudo curl -fsSL <nowiki>https://download.docker.com/linux/debian/gpg</nowiki> -o /etc/apt/keyrings/docker.asc</code> * <code>sudo chmod a+r /etc/apt/keyrings/docker.asc</code> Add the repository to Apt sources: * <code>echo \</code> ** <code>"deb [arch=$(dpkg --print-architecture) signe..."