Podman : コンテナーイメージを登録する2021/03/22 |
コンテナー用のイメージファイルを新規登録するには以下のように設定します。
|
|
[1] | 例として、公式からダウンロードした既存のイメージファイルのシステムに [httpd] をインストールして、[httpd] 入りのイメージを新規登録します。 コンテナーは [run] する毎に新しいものが生成されるため、コンテナー環境を最新化して [exit] した後に、直近のコンテナーを登録対象とします。 |
# 現在登録されているイメージ一覧を表示 [root@dlp ~]# podman images REPOSITORY TAG IMAGE ID CREATED SIZE registry.centos.org/centos stream8 2f3766df23b6 3 months ago 217 MB # 最新のイメージでコンテナーを起動し [httpd] をインストール [root@dlp ~]# podman run centos:stream8 /bin/bash -c "dnf -y upgrade; dnf -y install httpd" podman ps -a | tail -1 34640e93c501 registry.centos.org/centos:stream8 /bin/bash -c dnf ... About a minute ago Exited (0) 43 seconds ago brave_wiles # [httpd] インストール済みイメージを登録 [root@dlp ~]# podman commit 34640e93c501 srv.world/centos-httpd Getting image source signatures ..... ..... Writing manifest to image destination Storing signatures 6a4b6e2cae377eb4199616fe8936976ee300e3b07f2578e37d4bbdd143fa6a39 # 確認 [root@dlp ~]# podman images REPOSITORY TAG IMAGE ID CREATED SIZE srv.world/centos-httpd latest 6a4b6e2cae37 21 seconds ago 322 MB registry.centos.org/centos stream8 2f3766df23b6 3 months ago 217 MB # 登録したイメージからコンテナーを生成し [httpd] 確認 [root@dlp ~]# podman run srv.world/centos-httpd /usr/bin/whereis httpd httpd: /usr/sbin/httpd /usr/lib64/httpd /etc/httpd /usr/share/httpd /usr/share/man/man8/httpd.8.gz |
Sponsored Link |