6.5. コンテナーランタイムの永続的な変更
コンテナーランタイムおよびそのオプションを、/etc/containers/containers.conf
設定ファイル (root ユーザーとして) または $HOME/.config/containers/containers.conf
設定ファイル (非 root ユーザーとして) で設定できます。
注記
<runtime>
は crun または runc ランタイムです。
前提条件
-
container-tools
モジュールがインストールされている。
手順
/etc/containers/containers.conf
ファイルでランタイムを変更します。# vim /etc/containers/containers.conf [engine] runtime = "<runtime>"
myubi という名前のコンテナーを実行します。
# podman run --name=myubi -dt ubi8 bash Resolved "ubi8" as an alias (/etc/containers/registries.conf.d/001-rhel-shortnames.conf) Trying to pull registry.access.redhat.com/ubi8:latest… ... Storing signatures
検証
OCI ランタイムが
myubi
コンテナーで<runtime>
に設定されていることを確認します。# podman inspect myubi --format "{{.OCIRuntime}}" <runtime>
関連情報
- An introduction to crun, a fast and low-memory footprint container runtime
-
システム上の
containers.conf
man ページ