docker buildx rm [NAME]
Remove a builder instance
Name | Type | Default | Description |
---|---|---|---|
--all-inactive |
Remove all inactive builders | ||
--builder |
string |
Override the configured builder instance | |
-f , --force |
Do not prompt for confirmation | ||
--keep-daemon |
Keep the buildkitd daemon running | ||
--keep-state |
Keep BuildKit state |
Removes the specified or current builder. It is a no-op attempting to remove the default builder.
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
Same as buildx --builder
.
Do not prompt for confirmation before removing inactive builders.
$ docker buildx rm --all-inactive --force
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, so it can be reused by a new builder with the same name.
Currently, only supported by the docker-container
driver.