Debian 12 コンテナー管理ツール Podman をインストールする
環境
Debian 12
操作方法
1.Podman をインストールします。
# apt -y install podman
2.debian 公式イメージファイルをダウンロードします
# podman pull debian
3.コンテナーから echo を実行して [Welcome to the Podman World] を出力します。
# podman run debian /bin/echo "Welcome to the Podman World"
4.コンテナー環境の対話型シェルセッションに接続するには以下のように [-i]
オプションと [-t] オプションを付加します。
# podman run -it debian /bin/bash # uname -a # exit
5.コンテナーをデーモンとして起動するには [-d] オプションを付加します。
# podman run -itd debian /bin/bash
podmanプロセスを表示する
# podman ps
コンテナー環境に接続する
# podman exec -it コンテナーID /bin/bash
6.コンテナープロセスを終了する
# podman stop コンテナーID # podman ps