Documentation ¶
Index ¶
- type NopClient
- func (client *NopClient) ClientVersion() string
- func (client *NopClient) ContainerAttach(ctx context.Context, options types.ContainerAttachOptions) (types.HijackedResponse, error)
- func (client *NopClient) ContainerCommit(ctx context.Context, options types.ContainerCommitOptions) (types.ContainerCommitResponse, error)
- func (client *NopClient) ContainerCreate(ctx context.Context, config *container.Config, ...) (types.ContainerCreateResponse, error)
- func (client *NopClient) ContainerDiff(ctx context.Context, containerID string) ([]types.ContainerChange, error)
- func (client *NopClient) ContainerExecAttach(ctx context.Context, execID string, config types.ExecConfig) (types.HijackedResponse, error)
- func (client *NopClient) ContainerExecCreate(ctx context.Context, config types.ExecConfig) (types.ContainerExecCreateResponse, error)
- func (client *NopClient) ContainerExecInspect(ctx context.Context, execID string) (types.ContainerExecInspect, error)
- func (client *NopClient) ContainerExecResize(ctx context.Context, options types.ResizeOptions) error
- func (client *NopClient) ContainerExecStart(ctx context.Context, execID string, config types.ExecStartCheck) error
- func (client *NopClient) ContainerExport(ctx context.Context, containerID string) (io.ReadCloser, error)
- func (client *NopClient) ContainerInspect(ctx context.Context, containerID string) (types.ContainerJSON, error)
- func (client *NopClient) ContainerInspectWithRaw(ctx context.Context, containerID string, getSize bool) (types.ContainerJSON, []byte, error)
- func (client *NopClient) ContainerKill(ctx context.Context, containerID, signal string) error
- func (client *NopClient) ContainerList(ctx context.Context, options types.ContainerListOptions) ([]types.Container, error)
- func (client *NopClient) ContainerLogs(ctx context.Context, options types.ContainerLogsOptions) (io.ReadCloser, error)
- func (client *NopClient) ContainerPause(ctx context.Context, containerID string) error
- func (client *NopClient) ContainerRemove(ctx context.Context, options types.ContainerRemoveOptions) error
- func (client *NopClient) ContainerRename(ctx context.Context, containerID, newContainerName string) error
- func (client *NopClient) ContainerResize(ctx context.Context, options types.ResizeOptions) error
- func (client *NopClient) ContainerRestart(ctx context.Context, containerID string, timeout int) error
- func (client *NopClient) ContainerStart(ctx context.Context, containerID string) error
- func (client *NopClient) ContainerStatPath(ctx context.Context, containerID, path string) (types.ContainerPathStat, error)
- func (client *NopClient) ContainerStats(ctx context.Context, containerID string, stream bool) (io.ReadCloser, error)
- func (client *NopClient) ContainerStop(ctx context.Context, containerID string, timeout int) error
- func (client *NopClient) ContainerTop(ctx context.Context, containerID string, arguments []string) (types.ContainerProcessList, error)
- func (client *NopClient) ContainerUnpause(ctx context.Context, containerID string) error
- func (client *NopClient) ContainerUpdate(ctx context.Context, containerID string, updateConfig container.UpdateConfig) error
- func (client *NopClient) ContainerWait(ctx context.Context, containerID string) (int, error)
- func (client *NopClient) CopyFromContainer(ctx context.Context, containerID, srcPath string) (io.ReadCloser, types.ContainerPathStat, error)
- func (client *NopClient) CopyToContainer(ctx context.Context, options types.CopyToContainerOptions) error
- func (client *NopClient) Events(ctx context.Context, options types.EventsOptions) (io.ReadCloser, error)
- func (client *NopClient) ImageBuild(ctx context.Context, options types.ImageBuildOptions) (types.ImageBuildResponse, error)
- func (client *NopClient) ImageCreate(ctx context.Context, options types.ImageCreateOptions) (io.ReadCloser, error)
- func (client *NopClient) ImageHistory(ctx context.Context, imageID string) ([]types.ImageHistory, error)
- func (client *NopClient) ImageImport(ctx context.Context, options types.ImageImportOptions) (io.ReadCloser, error)
- func (client *NopClient) ImageInspectWithRaw(ctx context.Context, imageID string, getSize bool) (types.ImageInspect, []byte, error)
- func (client *NopClient) ImageList(ctx context.Context, options types.ImageListOptions) ([]types.Image, error)
- func (client *NopClient) ImageLoad(ctx context.Context, input io.Reader, quiet bool) (types.ImageLoadResponse, error)
- func (client *NopClient) ImagePull(ctx context.Context, options types.ImagePullOptions, ...) (io.ReadCloser, error)
- func (client *NopClient) ImagePush(ctx context.Context, options types.ImagePushOptions, ...) (io.ReadCloser, error)
- func (client *NopClient) ImageRemove(ctx context.Context, options types.ImageRemoveOptions) ([]types.ImageDelete, error)
- func (client *NopClient) ImageSave(ctx context.Context, imageIDs []string) (io.ReadCloser, error)
- func (client *NopClient) ImageSearch(ctx context.Context, options types.ImageSearchOptions, ...) ([]registry.SearchResult, error)
- func (client *NopClient) ImageTag(ctx context.Context, options types.ImageTagOptions) error
- func (client *NopClient) Info(ctx context.Context) (types.Info, error)
- func (client *NopClient) NetworkConnect(ctx context.Context, networkID, containerID string, ...) error
- func (client *NopClient) NetworkCreate(ctx context.Context, options types.NetworkCreate) (types.NetworkCreateResponse, error)
- func (client *NopClient) NetworkDisconnect(ctx context.Context, networkID, containerID string, force bool) error
- func (client *NopClient) NetworkInspect(ctx context.Context, networkID string) (types.NetworkResource, error)
- func (client *NopClient) NetworkList(ctx context.Context, options types.NetworkListOptions) ([]types.NetworkResource, error)
- func (client *NopClient) NetworkRemove(ctx context.Context, networkID string) error
- func (client *NopClient) RegistryLogin(ctx context.Context, auth types.AuthConfig) (types.AuthResponse, error)
- func (client *NopClient) ServerVersion(ctx context.Context) (types.Version, error)
- func (client *NopClient) VolumeCreate(ctx context.Context, options types.VolumeCreateRequest) (types.Volume, error)
- func (client *NopClient) VolumeInspect(ctx context.Context, volumeID string) (types.Volume, error)
- func (client *NopClient) VolumeList(ctx context.Context, filter filters.Args) (types.VolumesListResponse, error)
- func (client *NopClient) VolumeRemove(ctx context.Context, volumeID string) error
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type NopClient ¶
type NopClient struct { }
NopClient is a nop API Client based on engine-api
func (*NopClient) ClientVersion ¶
ClientVersion returns the version string associated with this instance of the Client
func (*NopClient) ContainerAttach ¶
func (client *NopClient) ContainerAttach(ctx context.Context, options types.ContainerAttachOptions) (types.HijackedResponse, error)
ContainerAttach attaches a connection to a container in the server
func (*NopClient) ContainerCommit ¶
func (client *NopClient) ContainerCommit(ctx context.Context, options types.ContainerCommitOptions) (types.ContainerCommitResponse, error)
ContainerCommit applies changes into a container and creates a new tagged image
func (*NopClient) ContainerCreate ¶
func (client *NopClient) ContainerCreate(ctx context.Context, config *container.Config, hostConfig *container.HostConfig, networkingConfig *network.NetworkingConfig, containerName string) (types.ContainerCreateResponse, error)
ContainerCreate creates a new container based in the given configuration
func (*NopClient) ContainerDiff ¶
func (client *NopClient) ContainerDiff(ctx context.Context, containerID string) ([]types.ContainerChange, error)
ContainerDiff shows differences in a container filesystem since it was started
func (*NopClient) ContainerExecAttach ¶
func (client *NopClient) ContainerExecAttach(ctx context.Context, execID string, config types.ExecConfig) (types.HijackedResponse, error)
ContainerExecAttach attaches a connection to an exec process in the server
func (*NopClient) ContainerExecCreate ¶
func (client *NopClient) ContainerExecCreate(ctx context.Context, config types.ExecConfig) (types.ContainerExecCreateResponse, error)
ContainerExecCreate creates a new exec configuration to run an exec process
func (*NopClient) ContainerExecInspect ¶
func (client *NopClient) ContainerExecInspect(ctx context.Context, execID string) (types.ContainerExecInspect, error)
ContainerExecInspect returns information about a specific exec process on the docker host
func (*NopClient) ContainerExecResize ¶
func (client *NopClient) ContainerExecResize(ctx context.Context, options types.ResizeOptions) error
ContainerExecResize changes the size of the tty for an exec process running inside a container
func (*NopClient) ContainerExecStart ¶
func (client *NopClient) ContainerExecStart(ctx context.Context, execID string, config types.ExecStartCheck) error
ContainerExecStart starts an exec process already create in the docker host
func (*NopClient) ContainerExport ¶
func (client *NopClient) ContainerExport(ctx context.Context, containerID string) (io.ReadCloser, error)
ContainerExport retrieves the raw contents of a container and returns them as an io.ReadCloser
func (*NopClient) ContainerInspect ¶
func (client *NopClient) ContainerInspect(ctx context.Context, containerID string) (types.ContainerJSON, error)
ContainerInspect returns the container information
func (*NopClient) ContainerInspectWithRaw ¶
func (client *NopClient) ContainerInspectWithRaw(ctx context.Context, containerID string, getSize bool) (types.ContainerJSON, []byte, error)
ContainerInspectWithRaw returns the container information and its raw representation
func (*NopClient) ContainerKill ¶
ContainerKill terminates the container process but does not remove the container from the docker host
func (*NopClient) ContainerList ¶
func (client *NopClient) ContainerList(ctx context.Context, options types.ContainerListOptions) ([]types.Container, error)
ContainerList returns the list of containers in the docker host
func (*NopClient) ContainerLogs ¶
func (client *NopClient) ContainerLogs(ctx context.Context, options types.ContainerLogsOptions) (io.ReadCloser, error)
ContainerLogs returns the logs generated by a container in an io.ReadCloser
func (*NopClient) ContainerPause ¶
ContainerPause pauses the main process of a given container without terminating it
func (*NopClient) ContainerRemove ¶
func (client *NopClient) ContainerRemove(ctx context.Context, options types.ContainerRemoveOptions) error
ContainerRemove kills and removes a container from the docker host
func (*NopClient) ContainerRename ¶
func (client *NopClient) ContainerRename(ctx context.Context, containerID, newContainerName string) error
ContainerRename changes the name of a given container
func (*NopClient) ContainerResize ¶
ContainerResize changes the size of the tty for a container
func (*NopClient) ContainerRestart ¶
func (client *NopClient) ContainerRestart(ctx context.Context, containerID string, timeout int) error
ContainerRestart stops and starts a container again
func (*NopClient) ContainerStart ¶
ContainerStart sends a request to the docker daemon to start a container
func (*NopClient) ContainerStatPath ¶
func (client *NopClient) ContainerStatPath(ctx context.Context, containerID, path string) (types.ContainerPathStat, error)
ContainerStatPath returns Stat information about a path inside the container filesystem
func (*NopClient) ContainerStats ¶
func (client *NopClient) ContainerStats(ctx context.Context, containerID string, stream bool) (io.ReadCloser, error)
ContainerStats returns near realtime stats for a given container
func (*NopClient) ContainerStop ¶
ContainerStop stops a container without terminating the process
func (*NopClient) ContainerTop ¶
func (client *NopClient) ContainerTop(ctx context.Context, containerID string, arguments []string) (types.ContainerProcessList, error)
ContainerTop shows process information from within a container
func (*NopClient) ContainerUnpause ¶
ContainerUnpause resumes the process execution within a container
func (*NopClient) ContainerUpdate ¶
func (client *NopClient) ContainerUpdate(ctx context.Context, containerID string, updateConfig container.UpdateConfig) error
ContainerUpdate updates resources of a container
func (*NopClient) ContainerWait ¶
ContainerWait pauses execution until a container exits
func (*NopClient) CopyFromContainer ¶
func (client *NopClient) CopyFromContainer(ctx context.Context, containerID, srcPath string) (io.ReadCloser, types.ContainerPathStat, error)
CopyFromContainer gets the content from the container and returns it as a Reader to manipulate it in the host
func (*NopClient) CopyToContainer ¶
func (client *NopClient) CopyToContainer(ctx context.Context, options types.CopyToContainerOptions) error
CopyToContainer copies content into the container filesystem
func (*NopClient) Events ¶
func (client *NopClient) Events(ctx context.Context, options types.EventsOptions) (io.ReadCloser, error)
Events returns a stream of events in the daemon in a ReadCloser
func (*NopClient) ImageBuild ¶
func (client *NopClient) ImageBuild(ctx context.Context, options types.ImageBuildOptions) (types.ImageBuildResponse, error)
ImageBuild sends request to the daemon to build images
func (*NopClient) ImageCreate ¶
func (client *NopClient) ImageCreate(ctx context.Context, options types.ImageCreateOptions) (io.ReadCloser, error)
ImageCreate creates a new image based in the parent options
func (*NopClient) ImageHistory ¶
func (client *NopClient) ImageHistory(ctx context.Context, imageID string) ([]types.ImageHistory, error)
ImageHistory returns the changes in an image in history format
func (*NopClient) ImageImport ¶
func (client *NopClient) ImageImport(ctx context.Context, options types.ImageImportOptions) (io.ReadCloser, error)
ImageImport creates a new image based in the source options
func (*NopClient) ImageInspectWithRaw ¶
func (client *NopClient) ImageInspectWithRaw(ctx context.Context, imageID string, getSize bool) (types.ImageInspect, []byte, error)
ImageInspectWithRaw returns the image information and it's raw representation
func (*NopClient) ImageList ¶
func (client *NopClient) ImageList(ctx context.Context, options types.ImageListOptions) ([]types.Image, error)
ImageList returns a list of images in the docker host
func (*NopClient) ImageLoad ¶
func (client *NopClient) ImageLoad(ctx context.Context, input io.Reader, quiet bool) (types.ImageLoadResponse, error)
ImageLoad loads an image in the docker host from the client host
func (*NopClient) ImagePull ¶
func (client *NopClient) ImagePull(ctx context.Context, options types.ImagePullOptions, privilegeFunc client.RequestPrivilegeFunc) (io.ReadCloser, error)
ImagePull requests the docker host to pull an image from a remote registry
func (*NopClient) ImagePush ¶
func (client *NopClient) ImagePush(ctx context.Context, options types.ImagePushOptions, privilegeFunc client.RequestPrivilegeFunc) (io.ReadCloser, error)
ImagePush requests the docker host to push an image to a remote registry
func (*NopClient) ImageRemove ¶
func (client *NopClient) ImageRemove(ctx context.Context, options types.ImageRemoveOptions) ([]types.ImageDelete, error)
ImageRemove removes an image from the docker host
func (*NopClient) ImageSave ¶
ImageSave retrieves one or more images from the docker host as an io.ReadCloser
func (*NopClient) ImageSearch ¶
func (client *NopClient) ImageSearch(ctx context.Context, options types.ImageSearchOptions, privilegeFunc client.RequestPrivilegeFunc) ([]registry.SearchResult, error)
ImageSearch makes the docker host to search by a term in a remote registry
func (*NopClient) NetworkConnect ¶
func (client *NopClient) NetworkConnect(ctx context.Context, networkID, containerID string, config *network.EndpointSettings) error
NetworkConnect connects a container to an existent network in the docker host
func (*NopClient) NetworkCreate ¶
func (client *NopClient) NetworkCreate(ctx context.Context, options types.NetworkCreate) (types.NetworkCreateResponse, error)
NetworkCreate creates a new network in the docker host
func (*NopClient) NetworkDisconnect ¶
func (client *NopClient) NetworkDisconnect(ctx context.Context, networkID, containerID string, force bool) error
NetworkDisconnect disconnects a container from an existent network in the docker host
func (*NopClient) NetworkInspect ¶
func (client *NopClient) NetworkInspect(ctx context.Context, networkID string) (types.NetworkResource, error)
NetworkInspect returns the information for a specific network configured in the docker host
func (*NopClient) NetworkList ¶
func (client *NopClient) NetworkList(ctx context.Context, options types.NetworkListOptions) ([]types.NetworkResource, error)
NetworkList returns the list of networks configured in the docker host
func (*NopClient) NetworkRemove ¶
NetworkRemove removes an existent network from the docker host
func (*NopClient) RegistryLogin ¶
func (client *NopClient) RegistryLogin(ctx context.Context, auth types.AuthConfig) (types.AuthResponse, error)
RegistryLogin authenticates the docker server with a given docker registry
func (*NopClient) ServerVersion ¶
ServerVersion returns information of the docker client and server host
func (*NopClient) VolumeCreate ¶
func (client *NopClient) VolumeCreate(ctx context.Context, options types.VolumeCreateRequest) (types.Volume, error)
VolumeCreate creates a volume in the docker host
func (*NopClient) VolumeInspect ¶
VolumeInspect returns the information about a specific volume in the docker host
func (*NopClient) VolumeList ¶
func (client *NopClient) VolumeList(ctx context.Context, filter filters.Args) (types.VolumesListResponse, error)
VolumeList returns the volumes configured in the docker host