CentOS Stream 9
Sponsored Link

Podman : コンテナーイメージを登録する2022/03/14

 
コンテナー用のイメージファイルを新規登録するには以下のように設定します。
[1] 例として、公式からダウンロードした既存のイメージファイルのシステムに [httpd] をインストールして、[httpd] 入りのイメージを新規登録します。 コンテナーは [run] する毎に新しいものが生成されるため、コンテナー環境を最新化して [exit] した後に、直近のコンテナーを登録対象とします。
# 現在登録されているイメージ一覧を表示

[root@dlp ~]#
podman images

REPOSITORY             TAG         IMAGE ID      CREATED     SIZE
quay.io/centos/centos  stream9     44ffcc4acee8  3 days ago  152 MB

# 最新のイメージでコンテナーを起動し [httpd] をインストール

[root@dlp ~]#
podman run centos:stream9 /bin/bash -c "dnf -y upgrade; dnf -y install httpd"

[root@dlp ~]#
podman ps -a | tail -1

9724f08d90ac  quay.io/centos/centos:stream9  /bin/bash -c dnf ...  56 seconds ago  Exited (0) 11 seconds ago               suspicious_carver

# [httpd] インストール済みイメージを登録

[root@dlp ~]#
podman commit 9724f08d90ac srv.world/centos-httpd

Getting image source signatures
...
...
Writing manifest to image destination
Storing signatures
0c6c507d6e956f286a623090a0316a3073999bb70d288058de82df6d794e4366

# 確認

[root@dlp ~]#
podman images

REPOSITORY              TAG         IMAGE ID      CREATED         SIZE
srv.world/centos-httpd  latest      0c6c507d6e95  24 seconds ago  253 MB
quay.io/centos/centos   stream9     44ffcc4acee8  3 days ago      152 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
関連コンテンツ