Docker : イメージを登録する2015/11/12 |
コンテナ用のイメージファイルを新規登録するには以下のようにします。
|
|
[1] | 例として、公式からダウンロードした既存のイメージファイルのシステムに httpd をインストールして、httpd 入りのイメージを新規登録します。 コンテナは run する毎に新しいものが生成されるため、コンテナ環境を最新化して exit した後に、直近のコンテナを登録対象とします。 |
# 現在登録されているイメージ一覧を表示 [root@dlp ~]# docker images REPOSITORY TAG IMAGE ID CREATED VIRTUAL SIZE docker.io/fedora latest c7d2f0130dae 9 days ago 204.3 MB # 最新のイメージでコンテナを起動し、httpd をインストール [root@dlp ~]# docker run fedora /bin/bash -c "dnf -y update; dnf -y install httpd" docker ps -a | head -2 CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES 726fb955d8f6 fedora "/bin/bash -c 'dnf -y" About a minute ago Exited (0) 9 seconds ago naughty_banach # httpd をインストールしたイメージを登録 [root@dlp ~]# docker commit 726fb955d8f6 images/fedora_httpd 539e352eb03146fa91b130c2aaae4b99b2f79569a37bcbce72c4c83b996e0a61 # 確認 [root@dlp ~]# docker images REPOSITORY TAG IMAGE ID CREATED VIRTUAL SIZE images/fedora_httpd latest 539e352eb031 23 seconds ago 549.2 MB docker.io/fedora latest c7d2f0130dae 9 days ago 204.3 MB # 登録したイメージからコンテナを生成し httpd 確認 [root@dlp ~]# docker run images/fedora_httpd /usr/sbin/httpd -V AH00558: httpd: Could not reliably determine the server's fully qualified domain name, using 172.17.0.5. Set the 'ServerName' directive globally to suppress this message Server version: Apache/2.4.17 (Fedora) Server built: Oct 28 2015 11:18:40 Server's Module Magic Number: 20120211:51 Server loaded: APR 1.5.2, APR-UTIL 1.5.4 Compiled using: APR 1.5.2, APR-UTIL 1.5.4 Architecture: 64-bit Server MPM: prefork threaded: no forked: yes (variable process count) Server compiled with.... ..... ..... |
Sponsored Link |
|