Skip to content

Commit 79a926d

Browse files
authored
docker-buildx-{inspect, stop, use}: add pages (#23681)
1 parent b06880d commit 79a926d

3 files changed

Lines changed: 48 additions & 0 deletions

File tree

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
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}}`

pages/common/docker-buildx-stop.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
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}}`

pages/common/docker-buildx-use.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
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}}`

0 commit comments

Comments
 (0)