Versions in this module Expand all Collapse all v0 v0.6.0 May 25, 2016 Changes in this version + type Backend interface + BuilderCopy func(containerID string, destPath string, src FileInfo, decompress bool) error + Commit func(string, *types.ContainerCommitConfig) (string, error) + ContainerAttach func(cID string, stdin io.ReadCloser, stdout, stderr io.Writer, stream bool) error + ContainerCreate func(types.ContainerCreateConfig) (types.ContainerCreateResponse, error) + ContainerKill func(containerID string, sig uint64) error + ContainerRm func(name string, config *types.ContainerRmConfig) error + ContainerStart func(containerID string, hostConfig *container.HostConfig) error + ContainerUpdateCmd func(containerID string, cmd []string) error + ContainerWait func(containerID string, timeout time.Duration) (int, error) + GetImage func(name string) (Image, error) + Pull func(name string) (Image, error) + type Context interface + Close func() error + Open func(path string) (io.ReadCloser, error) + Stat func(path string) (string, FileInfo, error) + Walk func(root string, walkFn WalkFunc) error + type DockerIgnoreContext struct + func (c DockerIgnoreContext) Process(filesToRemove []string) error + type FileInfo interface + Path func() string + type Hashed interface + Hash func() string + SetHash func(string) + type HashedFileInfo struct + FileHash string + func (fi *HashedFileInfo) SetHash(h string) + func (fi HashedFileInfo) Hash() string + type Image interface + Config func() *container.Config + ID func() string + type ImageCache interface + GetCachedImage func(parentID string, cfg *container.Config) (imageID string, err error) + type ModifiableContext interface + Remove func(path string) error + func MakeGitContext(gitURL string) (ModifiableContext, error) + func MakeRemoteContext(remoteURL string, ...) (ModifiableContext, error) + func MakeTarSumContext(tarStream io.Reader) (ModifiableContext, error) + type PathFileInfo struct + FileName string + FilePath string + func (fi PathFileInfo) Name() string + func (fi PathFileInfo) Path() string + type WalkFunc func(path string, fi FileInfo, err error) error v0.5.0 Feb 5, 2016