docker buildx rm

読む時間の目安: 2 分

説明

ビルダーインスタンスを削除します。

利用方法

$ docker buildx rm [NAME]

追加説明

Removes the specified or current builder. It is a no-op attempting to remove the default builder.

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

オプション

名前/省略形 デフォルト 説明
--all-inactive Remove all inactive builders
--force , -f Do not prompt for confirmation
--keep-daemon Keep the buildkitd daemon running
--keep-state Keep BuildKit state
--builder 設定された builder インスタンスをオーバーライドします。

利用例

Remove all inactive builders (--all-inactive)

Remove builders that are not in running state.

$ docker buildx rm --all-inactive
WARNING! This will remove all builders that are not in running state. Are you sure you want to continue? [y/N] y

Override the configured builder instance (--builder)

Same as buildx --builder.

Do not prompt for confirmation (--force)

Do not prompt for confirmation before removing inactive builders.

$ docker buildx rm --all-inactive --force

Keep the buildkitd daemon running (--keep-daemon)

Keep the buildkitd daemon running after the buildx context is removed. This is useful when you manage buildkitd daemons and buildx contexts independently. Currently, only supported by the docker-container and kubernetes drivers.

Keep BuildKit state (--keep-state)

Keep BuildKit state, so it can be reused by a new builder with the same name. Currently, only supported by the docker-container driver.

上位コマンド

コマンド 説明
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 のバージョンを表示します。