1. Download the public key for the Docker APT repository from https://download.docker.com/linux/debian/gpg

  2. You need a gpg binary to add the key to APT's keyring; apt-get install gnupg

  3. With that, you can add it, apt-key add docker.gpg

  4. Then add the Docker repo to APT's sources, in /etc/apt/sources.list.d/10docker:

    deb [arch=amd64] https://download.docker.com/linux/debian buster stable
  5. Install the pertinent packages, and some of the tools it recommends:
    apt-get install docker-ce docker-ce-cli containerd.io libltdl7 pigz xz-utils
    apt-mark auto libltdl7 pigz xz-utils

kbare at CLUB.CC.CMU.EDU/Docker (last edited 2021-01-03 04:18:49 by kbare@CLUB.CC.CMU.EDU)