Podman : インストール2022/05/24 |
コンテナー管理ツール Podman をインストールします。
|
|
[1] | Podman をインストールします。デーモンの起動は不要です。 |
[root@dlp ~]# dnf -y install podman
|
[2] | Fedora 公式イメージファイルをダウンロードし、コンテナーから echo を実行して [Welcome to the Podman World] を出力します。 |
# 公式イメージダウンロード [root@dlp ~]# podman pull fedora Resolved "fedora" as an alias (/etc/containers/registries.conf.d/000-shortnames.conf) Trying to pull registry.fedoraproject.org/fedora:latest... Getting image source signatures Copying blob 9c6cc3463716 done Copying blob 9c6cc3463716 done Copying config 750037c05c done Writing manifest to image destination Storing signatures 750037c05cfe1857e16500167c7c217658e15eb9bc6283020cfb3524c93d1240 # コンテナーで echo を実行 [root@dlp ~]# podman run fedora /bin/echo "Welcome to the Podman World" Welcome to the Podman World |
[3] | コンテナー環境の対話型シェルセッションに接続するには以下のように [-i] オプションと [-t] オプションを付加します。 コンテナー環境内で [exit] すると、ホストのコンソールに戻ってコンテナー環境のプロセスは終了します。 |
[root@dlp ~]#
[root@f265909fc457 /]# podman run -it fedora /bin/bash [root@f265909fc457 /]# # 接続できた
uname -a Linux f265909fc457 5.17.5-300.fc36.x86_64 #1 SMP PREEMPT Thu Apr 28 15:51:30 UTC 2022 x86_64 x86_64 x86_64 GNU/Linux [root@f265909fc457 /]# exit exit [root@dlp ~]# # 戻った
|
[4] | コンテナーをデーモンとして起動するには [-d] オプションを付加します。 |
[root@dlp ~]# podman run -itd fedora /bin/bash 8a5c65bed667ab01d38c76f1c475b39b64c310055367166816742df49fa7f4ec # podman プロセス表示 [root@dlp ~]# podman ps CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES 8a5c65bed667 registry.fedoraproject.org/fedora:latest /bin/bash 14 seconds ago Up 15 seconds ago cool_meitner # コンテナー環境に接続 [root@dlp ~]# podman exec -it 8a5c65bed667 /bin/bash [root@8a5c65bed667 /]# # 接続できた [root@8a5c65bed667 /]# exit
# コンテナープロセスを終了する (強制終了する場合は [kill]) [root@dlp ~]# podman stop 8a5c65bed667 [root@dlp ~]# podman ps CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES |
Sponsored Link |
|