Versions in this module Expand all Collapse all v0 v0.1.0 Apr 24, 2024 Changes in this version + var ErrNoEngine = errors.New("Engine no longer exists") + type NopClient struct + func NewNopClient() *NopClient + func (client *NopClient) AttachContainer(id string, options *dockerclient.AttachOptions) (io.ReadCloser, error) + func (client *NopClient) BuildImage(image *dockerclient.BuildImage) (io.ReadCloser, error) + func (client *NopClient) ConnectNetwork(id, container string) error + func (client *NopClient) ContainerChanges(id string) ([]*dockerclient.ContainerChanges, error) + func (client *NopClient) ContainerLogs(id string, options *dockerclient.LogOptions) (io.ReadCloser, error) + func (client *NopClient) ContainerStats(id string, stopChan <-chan struct{}) (<-chan dockerclient.StatsOrError, error) + func (client *NopClient) CreateContainer(config *dockerclient.ContainerConfig, name string, ...) (string, error) + func (client *NopClient) CreateNetwork(config *dockerclient.NetworkCreate) (*dockerclient.NetworkCreateResponse, error) + func (client *NopClient) CreateVolume(request *dockerclient.VolumeCreateRequest) (*dockerclient.Volume, error) + func (client *NopClient) DisconnectNetwork(id, container string, force bool) error + func (client *NopClient) ExecCreate(config *dockerclient.ExecConfig) (string, error) + func (client *NopClient) ExecResize(id string, width, height int) error + func (client *NopClient) ExecStart(id string, config *dockerclient.ExecConfig) error + func (client *NopClient) ImportImage(source string, repository string, tag string, tar io.Reader) (io.ReadCloser, error) + func (client *NopClient) Info() (*dockerclient.Info, error) + func (client *NopClient) InspectContainer(id string) (*dockerclient.ContainerInfo, error) + func (client *NopClient) InspectImage(id string) (*dockerclient.ImageInfo, error) + func (client *NopClient) InspectNetwork(id string) (*dockerclient.NetworkResource, error) + func (client *NopClient) KillContainer(id, signal string) error + func (client *NopClient) ListContainers(all bool, size bool, filters string) ([]dockerclient.Container, error) + func (client *NopClient) ListImages(all bool) ([]*dockerclient.Image, error) + func (client *NopClient) ListNetworks(filters string) ([]*dockerclient.NetworkResource, error) + func (client *NopClient) ListVolumes() ([]*dockerclient.Volume, error) + func (client *NopClient) LoadImage(reader io.Reader) error + func (client *NopClient) MonitorEvents(options *dockerclient.MonitorEventsOptions, stopChan <-chan struct{}) (<-chan dockerclient.EventOrError, error) + func (client *NopClient) PauseContainer(name string) error + func (client *NopClient) PullImage(name string, auth *dockerclient.AuthConfig) error + func (client *NopClient) PushImage(name, tag string, auth *dockerclient.AuthConfig) error + func (client *NopClient) RemoveContainer(id string, force, volumes bool) error + func (client *NopClient) RemoveImage(name string, force bool) ([]*dockerclient.ImageDelete, error) + func (client *NopClient) RemoveNetwork(id string) error + func (client *NopClient) RemoveVolume(name string) error + func (client *NopClient) RenameContainer(oldName string, newName string) error + func (client *NopClient) RestartContainer(id string, timeout int) error + func (client *NopClient) SearchImages(query, registry string, authConfig *dockerclient.AuthConfig) ([]dockerclient.ImageSearch, error) + func (client *NopClient) StartContainer(id string, config *dockerclient.HostConfig) error + func (client *NopClient) StartMonitorEvents(cb dockerclient.Callback, ec chan error, args ...interface{}) + func (client *NopClient) StartMonitorStats(id string, cb dockerclient.StatCallback, ec chan error, args ...interface{}) + func (client *NopClient) StopAllMonitorEvents() + func (client *NopClient) StopAllMonitorStats() + func (client *NopClient) StopContainer(id string, timeout int) error + func (client *NopClient) TagImage(nameOrID string, repo string, tag string, force bool) error + func (client *NopClient) UnpauseContainer(name string) error + func (client *NopClient) Version() (*dockerclient.Version, error) + func (client *NopClient) Wait(id string) <-chan dockerclient.WaitResult