Merge pull request #1204 from jedevc/remote-builder-typos

docs: fixup remote builder typos
This commit is contained in:
CrazyMax 2022-07-11 09:56:52 +02:00 committed by GitHub
commit 6824cf4548
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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: You can then connect buildx to it with the remote driver:
```console ```console
$ buildx create \ $ docker buildx create \
--name remote-unix \ --name remote-unix \
--driver remote \ --driver remote \
unix://$HOME/buildkitd.sock unix://$HOME/buildkitd.sock
@ -54,10 +54,10 @@ $ buildx create \
If you list available builders, you should then see `remote-unix` among them: If you list available builders, you should then see `remote-unix` among them:
```console ```console
$ buildx ls $ docker buildx ls
NAME/NODE DRIVER/ENDPOINT STATUS PLATFORMS NAME/NODE DRIVER/ENDPOINT STATUS PLATFORMS
test remote remote-unix remote
test0 unix:///home/.../buildkitd.sock running linux/amd64, linux/amd64/v2, linux/amd64/v3, linux/386 remote-unix0 unix:///home/.../buildkitd.sock running linux/amd64, linux/amd64/v2, linux/amd64/v3, linux/386
default * docker default * docker
default default running linux/amd64, linux/386 default default running linux/amd64, linux/386
``` ```