GetConnectionHelper returns Docker-specific connection helper for the given URL. GetConnectionHelper returns nil without error when no helper is registered for the scheme. ssh:// @ URL requires Docker 18.09 or later on the remote host.
(daemonURL string)
| 27 | // |
| 28 | // ssh://<user>@<host> URL requires Docker 18.09 or later on the remote host. |
| 29 | func GetConnectionHelper(daemonURL string) (*ConnectionHelper, error) { |
| 30 | return getConnectionHelper(daemonURL, nil) |
| 31 | } |
| 32 | |
| 33 | // GetConnectionHelperWithSSHOpts returns Docker-specific connection helper for |
| 34 | // the given URL, and accepts additional options for ssh connections. It returns |
nothing calls this directly
no test coverage detected
searching dependent graphs…