Versions in this module Expand all Collapse all v0 v0.1.0 Nov 9, 2017 Changes in this version + type LocalProxyClient struct + Stderr io.ReadCloser + Stdin io.WriteCloser + Stdout io.ReadCloser + func NewLocalProxyClient() (dockerClient *LocalProxyClient, err error) + func (client *LocalProxyClient) Close() (err error) + func (client *LocalProxyClient) Run(name string, args ...string) error + func (client *LocalProxyClient) Start(name string, args ...string) error + func (client *LocalProxyClient) StderrPipe() (r io.Reader) + func (client *LocalProxyClient) StdinPipe() (w io.WriteCloser) + func (client *LocalProxyClient) StdoutPipe() (r io.Reader) + func (client *LocalProxyClient) Wait() error + type ProxyClient interface + Close func() error + Run func(name string, args ...string) error + Start func(name string, args ...string) error + StderrPipe func() io.Reader + StdinPipe func() io.WriteCloser + StdoutPipe func() io.Reader + Wait func() error + type SSHProxyClient struct + Stderr io.Reader + Stdin io.WriteCloser + Stdout io.Reader + func NewSSHProxyClient(server common.Server) (dockerClient *SSHProxyClient, err error) + func (client *SSHProxyClient) Close() (err error) + func (client *SSHProxyClient) Run(name string, args ...string) error + func (client *SSHProxyClient) Start(name string, args ...string) error + func (client *SSHProxyClient) StderrPipe() (r io.Reader) + func (client *SSHProxyClient) StdinPipe() (w io.WriteCloser) + func (client *SSHProxyClient) StdoutPipe() io.Reader + func (client *SSHProxyClient) Wait() error