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?

前回のおさらい

5年ぶりぐらいに触る人間が、何分で構築できるのか、
というテーマで環境構築を進めてまいります。
前回はゲストOS(AlmaLinux)のネットワーク設定を終えたところまで。

5.Dockerのインストール

コンテナの動作検証をしたいため、好き勝手さわれて壊れても困らない
ゲストOS上にDocker Engineをインストールしていきたいと思います。
公式ドキュメントを参照しながら進めます!


まずはdnf-plugins-coreのインストールをしろとな
sudo dnf -y install dnf-plugins-core

えぇぇ、すでにインストールされているじゃん

image.png


気を取り直して、リポジトリを登録します
sudo dnf config-manager --add-repo https://download.docker.com/linux/rhel/docker-ce.repo

秒で終了。そりゃそうですよね。

image.png


では、ようやくDockerのインストールです。
sudo dnf install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin

2回ほど確認されますが、「y」を入力して、無事完了!

image.png


起動時に自動で立ち上がる設定にします

sudo systemctl enable --now docker

image.png


以上でおわりなので、hello worldで締めようと思います。
sudo docker run hello-world

image.png

おおー、普通に動いたっぽいですね。
明日は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?