66 lines
3.1 KiB
Go
66 lines
3.1 KiB
Go
package dockerclient
|
|
|
|
import (
|
|
"io"
|
|
)
|
|
|
|
type Callback func(*Event, chan error, ...interface{})
|
|
|
|
type StatCallback func(string, *Stats, chan error, ...interface{})
|
|
|
|
type Client interface {
|
|
Info() (*Info, error)
|
|
ListContainers(all, size bool, filters string) ([]Container, error)
|
|
InspectContainer(id string) (*ContainerInfo, error)
|
|
InspectImage(id string) (*ImageInfo, error)
|
|
CreateContainer(config *ContainerConfig, name string, authConfig *AuthConfig) (string, error)
|
|
ContainerLogs(id string, options *LogOptions) (io.ReadCloser, error)
|
|
ContainerChanges(id string) ([]*ContainerChanges, error)
|
|
// ContainerStats takes a container ID and an optional stop channel and
|
|
// returns a StatsOrError channel. If an error is ever sent, then no
|
|
// more stats will be sent on that channel. If a stop channel is
|
|
// provided, events will stop being monitored after the stop channel is
|
|
// closed.
|
|
ContainerStats(id string, stopChan <-chan struct{}) (<-chan StatsOrError, error)
|
|
ExecCreate(config *ExecConfig) (string, error)
|
|
ExecStart(id string, config *ExecConfig) error
|
|
ExecResize(id string, width, height int) error
|
|
StartContainer(id string, config *HostConfig) error
|
|
AttachContainer(id string, options *AttachOptions) (io.ReadCloser, error)
|
|
StopContainer(id string, timeout int) error
|
|
RestartContainer(id string, timeout int) error
|
|
KillContainer(id, signal string) error
|
|
Wait(id string) <-chan WaitResult
|
|
// MonitorEvents takes options and an optional stop channel, and returns
|
|
// an EventOrError channel. If an error is ever sent, then no more
|
|
// events will be sent. If a stop channel is provided, events will stop
|
|
// being monitored after the stop channel is closed.
|
|
MonitorEvents(options *MonitorEventsOptions, stopChan <-chan struct{}) (<-chan EventOrError, error)
|
|
StartMonitorEvents(cb Callback, ec chan error, args ...interface{})
|
|
StopAllMonitorEvents()
|
|
StartMonitorStats(id string, cb StatCallback, ec chan error, args ...interface{})
|
|
StopAllMonitorStats()
|
|
TagImage(nameOrID string, repo string, tag string, force bool) error
|
|
Version() (*Version, error)
|
|
PullImage(name string, auth *AuthConfig) error
|
|
PushImage(name string, tag string, auth *AuthConfig) error
|
|
LoadImage(reader io.Reader) error
|
|
RemoveContainer(id string, force, volumes bool) error
|
|
ListImages(all bool) ([]*Image, error)
|
|
RemoveImage(name string, force bool) ([]*ImageDelete, error)
|
|
SearchImages(query, registry string, auth *AuthConfig) ([]ImageSearch, error)
|
|
PauseContainer(name string) error
|
|
UnpauseContainer(name string) error
|
|
RenameContainer(oldName string, newName string) error
|
|
ImportImage(source string, repository string, tag string, tar io.Reader) (io.ReadCloser, error)
|
|
BuildImage(image *BuildImage) (io.ReadCloser, error)
|
|
ListVolumes() ([]*Volume, error)
|
|
RemoveVolume(name string) error
|
|
CreateVolume(request *VolumeCreateRequest) (*Volume, error)
|
|
ListNetworks(filters string) ([]*NetworkResource, error)
|
|
InspectNetwork(id string) (*NetworkResource, error)
|
|
CreateNetwork(config *NetworkCreate) (*NetworkCreateResponse, error)
|
|
ConnectNetwork(id, container string) error
|
|
DisconnectNetwork(id, container string, force bool) error
|
|
RemoveNetwork(id string) error
|
|
}
|