mirror of
https://gitea.com/Lydanne/buildx.git
synced 2025-07-14 07:27:07 +08:00
docs: split reference docs to separate files
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
33
docs/reference/buildx_inspect.md
Normal file
33
docs/reference/buildx_inspect.md
Normal file
@ -0,0 +1,33 @@
|
||||
# `buildx inspect [NAME]`
|
||||
|
||||
## Description
|
||||
|
||||
Shows information about the current or specified builder.
|
||||
|
||||
Example:
|
||||
|
||||
```console
|
||||
$ 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
|
||||
```
|
||||
|
||||
### `--bootstrap`
|
||||
|
||||
Ensures 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, it is
|
||||
thus not necessary. The same BuildKit container is used during the lifetime of
|
||||
the associated builder node (as displayed in `buildx ls`).
|
Reference in New Issue
Block a user