Merge pull request #4330 from dvdksn/docs/ssh-sock-path

docs: added example for specifying socket path with -H
This commit is contained in:
Sebastiaan van Stijn 2023-06-02 14:53:48 +02:00 committed by GitHub
commit 0b97e8aa1c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 0 deletions

View File

@ -428,6 +428,13 @@ to the `/var/run/docker.sock` Unix socket on the SSH host.
$ docker -H ssh://user@192.168.64.5 ps $ docker -H ssh://user@192.168.64.5 ps
``` ```
You can optionally specify the location of the socket by appending a path
component to the end of the SSH address.
```console
$ docker -H ssh://user@192.168.64.5/var/run/docker.sock ps
```
### Display help text ### Display help text
To list the help on any command just execute the command, followed by the To list the help on any command just execute the command, followed by the