This website requires JavaScript.
Explore
Help
Register
Sign In
Guest24897
/
DockerCLI
mirror of
https://github.com/docker/cli.git
Watch
1
Star
0
Fork
You've already forked DockerCLI
0
Code
Issues
Packages
Projects
Releases
Wiki
Activity
3dfe2ffc1f
DockerCLI
/
cli
/
connhelper
/
commandconn
/
pdeathsig_nolinux.go
11 lines
99 B
Go
Raw
Normal View
History
Unescape
Escape
support SSH connection 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>
2018-02-19 04:31:29 -05:00
// +build !linux
connhelper: export functions for other projects Exposed functions are planned to be used by `buildctl`: https://github.com/moby/buildkit/issues/769 Signed-off-by: Akihiro Suda <suda.akihiro@lab.ntt.co.jp>
2019-03-01 09:34:36 -05:00
package
commandconn
support SSH connection 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>
2018-02-19 04:31:29 -05:00
import
(
"os/exec"
)
func
setPdeathsig
(
cmd
*
exec
.
Cmd
)
{
}