1
0
mirror of https://github.com/docker/cli.git synced 2025-07-30 17:03:07 +03:00

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

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