AlmaLinux 8.4にコンテナー管理ツール Podman をインストールする
1.podmanをインストール
# dnf -y install podman
2.バージョンの確認
# podman –version
podman version 3.2.3
3.podman情報確認
# podman info host: arch: amd64 buildahVersion: 1.21.3 cgroupControllers: - cpuset - cpu 略
4.AlmaLinux 公式イメージファイルをダウンロード
# podman pull docker.io/almalinux/almalinux Trying to pull docker.io/almalinux/almalinux:latest... Getting image source signatures 略 afb2ada19d56f246a3af179ef483b0e4ab0eff5926e68207222308bb85bf2538
5.コンテナーでechoを実行
# podman run almalinux /bin/echo "Welcome to Podman" Welcome to Podman
6.コンテナー環境に接続
[root@localhost src]# podman run -it almalinux /bin/bash [root@27ef2f91af5d /]# uname -a Linux 27ef2f91af5d 4.18.0-305.el8.x86_64 #1 SMP Wed May 19 18:55:28 EDT 2021 x86_64 x86_64 x86_64 GNU/Linux
7.コンテナー環境のプロセスを終了
[root@27ef2f91af5d /]# exit
exit