0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Debian11にDocker Engineをインストールする

Last updated at Posted at 2023-11-04

パッケージを更新する

sudo apt-get update

必要なパッケージやツールをインストールする

以下のパッケージやツールをインストールします。

名前 説明
ca-certificates 証明書関連のパッケージ
curl HTTPなどでファイルをダウンロードするツール
gnpupg デジタル認証を行うためのツール
sudo apt-get install ca-certificates curl gnupg

PGPキーを保存するディレクトリを作成する

sudo install -m 0755 -d /etc/apt/keyrings

PGPキーを登録する

curl -fsSL https://download.docker.com/linux/debian/gpg | sudo gpg --dearmor -o /etc/apt/keyrings/docker.gpg
sudo chmod a+r /etc/apt/keyrings/docker.gpg

リポジトリに追加する

echo \
  "deb [arch="$(dpkg --print-architecture)" signedby=/etc/apt/keyrings/docker.gpg] https://download.docker.com/linux/debian \
  "$(. /etc/os-release && echo "$VERSION_CODENAME")" stable" | \
  sudo tee /etc/apt/sources.list.d/docker.list > /dev/null

リポジトリを更新する

sudo apt-get update

Dokcerをインストールする

sudo apt-get install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin

Doker Engineを起動する

sudo systemctl enable docker

以上です。

参考

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?