Podman : コンテナーイメージを登録する2022/11/22 |
コンテナー用のイメージファイルを新規登録するには以下のように設定します。
|
|
[1] | 例として、公式からダウンロードした既存のイメージファイルのシステムに [httpd] をインストールして、[httpd] 入りのイメージを新規登録します。 コンテナーは [run] する毎に新しいものが生成されるため、コンテナー環境を最新化して [exit] した後に、直近のコンテナーを登録対象とします。 |
# 現在登録されているイメージ一覧を表示 [root@dlp ~]# podman images REPOSITORY TAG IMAGE ID CREATED SIZE registry.fedoraproject.org/fedora latest 885d2b38b819 11 days ago 190 MB # 最新のイメージでコンテナーを起動し [httpd] をインストール [root@dlp ~]# podman run fedora /bin/bash -c "dnf -y upgrade; dnf -y install httpd" podman ps -a | tail -1 bc43c6d905ed registry.fedoraproject.org/fedora:latest /bin/bash -c dnf ... About a minute ago Exited (0) 38 seconds ago quirky_hodgkin # [httpd] インストール済みイメージを登録 [root@dlp ~]# podman commit bc43c6d905ed srv.world/fedora-httpd Getting image source signatures Copying blob cc6656265656 skipped: already exists Copying blob 479a73595ff5 done Copying config 87f2afc7b8 done Writing manifest to image destination Storing signatures 87f2afc7b89d1f9b0dbd459ca38ecc62ba86e43ecb22d151214df421b4333b11 # 確認 [root@dlp ~]# podman images REPOSITORY TAG IMAGE ID CREATED SIZE srv.world/fedora-httpd latest 87f2afc7b89d 25 seconds ago 458 MB registry.fedoraproject.org/fedora latest 885d2b38b819 11 days ago 190 MB # 登録したイメージからコンテナーを生成し [httpd] 確認 [root@dlp ~]# podman run srv.world/fedora-httpd /usr/sbin/httpd -V Server version: Apache/2.4.54 (Fedora Linux) Server built: Jul 21 2022 00:00:00 Server's Module Magic Number: 20120211:124 Server loaded: APR 1.7.0, APR-UTIL 1.6.1, PCRE 10.40 2022-04-14 Compiled using: APR 1.7.0, APR-UTIL 1.6.1, PCRE 10.40 2022-04-14 Architecture: 64-bit Server MPM: event threaded: yes (fixed thread count) forked: yes (variable process count) ..... ..... |
Sponsored Link |