Docker CEのインストール候補が見つからないエラーの解決方法


  1. パッケージリストの更新:

    sudo apt update
  2. Dockerの依存関係をインストール:

    sudo apt install apt-transport-https ca-certificates curl software-properties-common
  3. Dockerの公式GPGキーを追加:

    curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg
  4. Dockerのリポジトリを追加:

    echo "deb [arch=amd64 signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
  5. パッケージリストの更新:

    sudo apt update
  6. Docker CEのインストール:

    sudo apt install docker-ce