e.g. docker -H ssh://me@server The `docker` CLI also needs to be installed on the remote host to provide `docker system dial-stdio`, which proxies the daemon socket to stdio. Please refer to docs/reference/commandline/dockerd.md . Signed-off-by: Akihiro Suda <suda.akihiro@lab.ntt.co.jp>
11 lines
98 B
Go
11 lines
98 B
Go
// +build !linux
|
|
|
|
package connhelper
|
|
|
|
import (
|
|
"os/exec"
|
|
)
|
|
|
|
func setPdeathsig(cmd *exec.Cmd) {
|
|
}
|