File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ # docker buildx inspect
2+
3+ > Inspect the current or a specified builder instance.
4+ > More information: < https://docs.docker.com/reference/cli/docker/buildx/inspect > .
5+
6+ - Show information about the current builder instance:
7+
8+ ` docker buildx inspect `
9+
10+ - Inspect a specific builder instance by name:
11+
12+ ` docker buildx inspect {{builder_name}} `
13+
14+ - Ensure the builder is running before inspecting:
15+
16+ ` docker buildx inspect --bootstrap `
17+
18+ - Override the default timeout for loading builder status (default: 20 seconds):
19+
20+ ` docker buildx inspect --timeout {{seconds}} `
Original file line number Diff line number Diff line change 1+ # docker buildx stop
2+
3+ > Stop a builder instance.
4+ > More information: < https://docs.docker.com/reference/cli/docker/buildx/stop > .
5+
6+ - Stop the current builder instance:
7+
8+ ` docker buildx stop `
9+
10+ - Stop a specific builder instance:
11+
12+ ` docker buildx stop {{builder_name}} `
Original file line number Diff line number Diff line change 1+ # docker buildx use
2+
3+ > Set the current builder instance.
4+ > More information: < https://docs.docker.com/reference/cli/docker/buildx/use > .
5+
6+ - Set a specific builder instance as the current one:
7+
8+ ` docker buildx use {{builder_name}} `
9+
10+ - Set a builder as the default for the current context:
11+
12+ ` docker buildx use --default {{builder_name}} `
13+
14+ - Set a builder and persist the changes across contexts:
15+
16+ ` docker buildx use --global {{builder_name}} `
You can’t perform that action at this time.
0 commit comments