Debian 12 bookworm
Sponsored Link

Buildah : インストール2023/06/21

 
コンテナーイメージ作成ツール Buildah をインストールします。
OCI (Open Container Initiative) イメージ フォーマットに準拠したコンテナーイメージを作成可能 且つ デーモン不要で利用できます。
[1] Buildah をインストールします。
root@dlp:~#
apt -y install buildah
[2] Buildah の基本操作です。
イメージからワーキングコンテナーを新規作成する。
# [debian] イメージからワーキングコンテナー作成

root@dlp:~#
buildah from debian

debian-working-container

# コンテナーリスト

root@dlp:~#
buildah containers

CONTAINER ID  BUILDER  IMAGE ID     IMAGE NAME                       CONTAINER NAME
4dfd63c8deb2     *     49081a1edb0b docker.io/library/debian:latest  debian-working-container

# コンテナーイメージリスト

root@dlp:~#
buildah images

REPOSITORY                   TAG       IMAGE ID       CREATED             SIZE
docker.io/library/debian     latest    49081a1edb0b   8 days ago          121 MB

# コンテナーイメージは podman からも使用可

root@dlp:~#
podman images

REPOSITORY                  TAG         IMAGE ID      CREATED            SIZE
docker.io/library/debian    latest      49081a1edb0b  8 days ago         121 MB
[3] ワーキングコンテナーを操作する。
# シェル変数に格納可能

root@dlp:~#
container=$(buildah from debian)

root@dlp:~#
echo $container

debian-working-container-1
# コンテナーから各種コマンド実行可能

root@dlp:~#
buildah run $container echo "Hello Buildah World"

Hello Buildah World
root@dlp:~#
buildah run $container bash

root@7279b5cfbac1:/#
apt-get update; apt-get -y install python3

root@7279b5cfbac1:/#
root@dlp:~#
buildah run $container whereis python3

python3: /usr/bin/python3 /usr/lib/python3 /etc/python3 /usr/share/python3 /usr/share/man/man1/python3.1.gz
[4] ワーキングコンテナー内へファイルをコピーする。
root@dlp:~#
echo "buildah test" > buildah.txt

root@dlp:~#
buildah copy $container buildah.txt /tmp/buildah.txt

7553c62d21edda64a3067fa9805a5cd8e5781c6058be12eb9792d7e0e9781ed4
root@dlp:~#
buildah run $container cat /tmp/buildah.txt

buildah test
[5] ワーキングコンテナーのファイルシステムをマウントする。
root@dlp:~#
buildah mount $container

/var/lib/containers/storage/overlay/d11149f7b92f8a4f3d1e0db104083af59501d1e855d7d852b685a7c1f46f0db2/merged
root@dlp:~#
ll /var/lib/containers/storage/overlay/d11149f7b92f8a4f3d1e0db104083af59501d1e855d7d852b685a7c1f46f0db2/merged

total 68
lrwxrwxrwx 1 root root    7 Jun 11 19:00 bin -> usr/bin
drwxr-xr-x 2 root root 4096 Mar  2 07:55 boot
drwxr-xr-x 2 root root 4096 Jun 11 19:00 dev
drwxr-xr-x 1 root root 4096 Jun 20 20:50 etc
drwxr-xr-x 2 root root 4096 Mar  2 07:55 home
.....
.....

# アンマウント

root@dlp:~#
buildah umount $container

7279b5cfbac1295636b3beb36c147847d9d6c368804991361dc4e3a948847ed5
[6] ワーキングコンテナーからイメージを作成する。
root@dlp:~#
buildah commit $container my-debian:latest

Getting image source signatures
Copying blob 332b199f36eb skipped: already exists
Copying blob ffd7719f171d done
Copying config aeae402034 done
Writing manifest to image destination
Storing signatures
aeae4020349c3265841cf148894a2dfd96a11159f896563098a8f121da642330

root@dlp:~#
buildah images

REPOSITORY                   TAG       IMAGE ID       CREATED             SIZE
localhost/my-debian          latest    aeae4020349c   20 seconds ago      191 MB
docker.io/library/debian     latest    49081a1edb0b   8 days ago          121 MB

# 作成したコンテナーイメージは podman からも利用可

root@dlp:~#
podman run localhost/my-debian hostname

bbb4900380cc
[7] コンテナーイメージを指定の Registry へ Push する。
root@dlp:~#
buildah images

REPOSITORY                   TAG       IMAGE ID       CREATED             SIZE
localhost/my-debian          latest    aeae4020349c   20 seconds ago      191 MB
docker.io/library/debian     latest    49081a1edb0b   8 days ago          121 MB

# [localhost/my-debian] イメージを [node01.srv.world:5000] へ Push する
# Push 先の registry が SSL/TLS 未対応の場合は [--tls-verify=false] オプション付加が必要

root@dlp:~#
buildah push --tls-verify=false localhost/my-debian node01.srv.world:5000/my-debian
root@dlp:~#
curl node01.srv.world:5000/v2/_catalog

{"repositories":["my-debian"]}
# 他の任意のノードから Pull 可能

root@node01:~#
podman pull --tls-verify=false node01.srv.world:5000/my-debian

root@node01:~#
podman images

REPOSITORY                       TAG         IMAGE ID      CREATED        SIZE
node01.srv.world:5000/my-debian  latest      aeae4020349c  7 minutes ago  147 MB
docker.io/library/registry       2           3a0f7b0a13ef  3 weeks ago    24.7 MB
関連コンテンツ