Versions in this module Expand all Collapse all v0 v0.5.0 Feb 5, 2016 Changes in this version + type Builder interface + Build func() (imageID string) + 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 Docker interface + Commit func(string, *daemon.ContainerCommitConfig) (*image.Image, error) + Container func(id string) (*daemon.Container, error) + Copy func(c *daemon.Container, destPath string, src FileInfo, decompress bool) error + Create func(*runconfig.Config, *runconfig.HostConfig) (*daemon.Container, []string, error) + Kill func(c *daemon.Container) error + LookupImage func(name string) (*image.Image, error) + Mount func(c *daemon.Container) error + Pull func(name string) (*image.Image, error) + Release func(sessionID string, activeImages []string) + Remove func(id string, cfg *daemon.ContainerRmConfig) error + Retain func(sessionID, imgID string) + Start func(c *daemon.Container) error + Unmount func(c *daemon.Container) 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 ImageCache interface + GetCachedImage func(parentID string, cfg *runconfig.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