🐈

dockerインストール(CentOS8)

2021/02/21に公開

環境:CentOS8.2

リポジトリの追加

sudo yum install -y yum-utils
sudo yum-config-manager \
  --add-repo \
  https://download.docker.com/linux/centos/docker-ce.repo

dockerのインストール

sudo yum install -y docker-ce docker-ce-cli containerd.io

dockerの起動、自動起動設定

sudo systemctl start docker.service
sudo systemctl enable docker.service

ユーザーの変更

sudo chown 実行したいユーザーグループ:実行したいユーザー /var/run/docker.sock

インストールの確認

docker version

動作確認

sudo docker run hello-world
docker run hello-world

下記のようなメッセージが出ればOK

[azureuser@redis ~]$ docker run hello-world

Hello from Docker!
This message shows that your installation appears to be working correctly.

Discussion