docker buildx inspect

読む時間の目安: 2 分

説明

現在のビルダーインスタンスを確認します。

利用方法

$ docker buildx inspect [NAME]

追加説明

Shows information about the current or specified builder.

本コマンドの利用例については、以下に示す 利用例の節 を参照してください。

オプション

名前/省略形 デフォルト 説明
--bootstrap 確認前にビルダーを起動し直します。
--builder 設定された builder インスタンスをオーバーライドします。

利用例

Ensure that the builder is running before inspecting (--bootstrap)

Use the --bootstrap option to ensure that the builder is running before inspecting it. If the driver is docker-container, then --bootstrap starts the buildkit container and waits until it is operational. Bootstrapping is automatically done during build, and therefore not necessary. The same BuildKit container is used during the lifetime of the associated builder node (as displayed in buildx ls).

Override the configured builder instance (--builder)

Same as buildx --builder.

Get information about a builder instance

By default, inspect shows information about the current builder. Specify the name of the builder to inspect to get information about that builder. The following example shows information about a builder instance named elated_tesla:

$ docker buildx inspect elated_tesla

Name:   elated_tesla
Driver: docker-container

Nodes:
Name:      elated_tesla0
Endpoint:  unix:///var/run/docker.sock
Status:    running
Platforms: linux/amd64

Name:      elated_tesla1
Endpoint:  ssh://ubuntu@1.2.3.4
Status:    running
Platforms: linux/arm64, linux/arm/v7, linux/arm/v6

上位コマンド

コマンド 説明
docker buildx Docker Buildx
コマンド 説明
docker buildx bake ファイルからビルドします。
docker buildx build ビルドを開始します。
docker buildx create 新規にビルダーインスタンスを生成します。
docker buildx du ディスク利用量。
docker buildx imagetools レジストリ上のイメージを操作するコマンドです。
docker buildx inspect 現在のビルダーインスタンスを確認します。
docker buildx ls ビルダーインスタンスを一覧表示します。
docker buildx prune ビルドキャッシュを削除します。
docker buildx rm ビルダーインスタンスを削除します。
docker buildx stop ビルダーインスタンスを停止します。
docker buildx use 現在のビルダーインスタンスを設定します。
docker buildx version Buildx のバージョンを表示します。