Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: fixup remote builder typos #1204

Merged
merged 1 commit into from
Jul 11, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions docs/guides/remote-builder.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ srw-rw---- 1 root user 0 May 5 11:04 /home/user/buildkitd.sock
You can then connect buildx to it with the remote driver:

```console
$ buildx create \
$ docker buildx create \
--name remote-unix \
--driver remote \
unix://$HOME/buildkitd.sock
Expand All @@ -54,10 +54,10 @@ $ buildx create \
If you list available builders, you should then see `remote-unix` among them:

```console
$ buildx ls
$ docker buildx ls
NAME/NODE DRIVER/ENDPOINT STATUS PLATFORMS
test remote
test0 unix:///home/.../buildkitd.sock running linux/amd64, linux/amd64/v2, linux/amd64/v3, linux/386
remote-unix remote
remote-unix0 unix:///home/.../buildkitd.sock running linux/amd64, linux/amd64/v2, linux/amd64/v3, linux/386
default * docker
default default running linux/amd64, linux/386
```
Expand Down