Requirement
- AlmaLinux9.3
- Docker (リポジトリからのインストール:推奨方法)
リポジトリからのDockerインストール
Docker 関連のリポジトリが存在しないことを確認。
dnf repolist | grep docker
事前にシステムのパッケージを最新に更新する。
$ sudo dnf -y update
リポジトリの登録
$ sudo dnf config-manager --add-repo=https://download.docker.com/linux/centos/docker-ce.repo
Adding repo from: https://download.docker.com/linux/centos/docker-ce.repo
リポジトリ登録の確認
$ dnf repolist | grep docker
docker-ce-stable Docker CE Stable - x86_64
Docker Engine のインストール
Docker本体と compose プラグインなどのパッケージをインストールする。
$ sudo dnf install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin
Docker サービスの起動
Docker Engine ステータスの確認。
$ sudo systemctl status docker
○ docker.service - Docker Application Container Engine
Loaded: loaded (/usr/lib/systemd/system/docker.service; disabled; preset: disabled)
Active: inactive (dead)
TriggeredBy: ○ docker.socket
Docs: https://docs.docker.com
Docker Engine の起動
$ sudo systemctl start docker
起動時の自動起動を指定
$ sudo systemctl enable docker
インストール後の設定
一般ユーザーをDockerグループに追加
$ sudo usermod -aG docker $USER
dockerコマンドを使用する場合には、一度 ログアウトして再度ログイン する。
Docker の動作確認
Dockerが機能しているかを確認
$ docker run hello-world
Unable to find image 'hello-world:latest' locally
latest: Pulling from library/hello-world
c1ec31eb5944: Pull complete
Digest: sha256:91fb4b041da273d5a3273b6d587d62d518300a6ad268b28628f74997b93171b2
Status: Downloaded newer image for hello-world:latest
Hello from Docker!
This message shows that your installation appears to be working correctly.
To generate this message, Docker took the following steps:
1. The Docker client contacted the Docker daemon.
2. The Docker daemon pulled the "hello-world" image from the Docker Hub.
(amd64)
3. The Docker daemon created a new container from that image which runs the
executable that produces the output you are currently reading.
4. The Docker daemon streamed that output to the Docker client, which sent it
to your terminal.
To try something more ambitious, you can run an Ubuntu container with:
$ docker run -it ubuntu bash
Share images, automate workflows, and more with a free Docker ID:
https://hub.docker.com/
For more examples and ideas, visit:
https://docs.docker.com/get-started/
Docker のアンインストール
何か問題があり Docker を削除する場合には、以下のコマンドを実行する。
$ sudo dnf remove docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin
パッケージがアンインストールできたら、Docker関連のファイルを削除する。
$ sudo rm -rf /var/lib/docker
$ sudo rm -rf /var/lib/containerd