-
パッケージリストの更新:
sudo apt update
-
Dockerの依存関係をインストール:
sudo apt install apt-transport-https ca-certificates curl software-properties-common
-
Dockerの公式GPGキーを追加:
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg
-
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
-
パッケージリストの更新:
sudo apt update
-
Docker CEのインストール:
sudo apt install docker-ce