🐱
dockerインストール(RHEL7)
割とよく使う手順なのでまとめました。
環境:RHEL7.7
EPEL有効化
sudo yum -y install yum-utils
sudo yum-config-manager --enable rhel-7-server-rhui-extras-rpms
sudo yum -y update
dockerインストール
sudo yum -y install docker
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