Versions in this module Expand all Collapse all v0 v0.1.0 Jun 9, 2016 Changes in this version + var ErrBucketNotFound error = errors.New("BUCKET_NOT_FOUND") + type AuthConfig struct + Email string + Host string + Password string + Username string + type BuildImageOptions struct + ContextDir string + InputStream io.Reader + Name string + OutputStream io.Writer + RawJSONStream bool + RmTmpContainer bool + type CPUConfig struct + CPUs string + MEMs string + Period int64 + Quota int64 + Set string + Shares int64 + type Config struct + CPU CPUConfig + Cmd []string + DNS DNSConfig + Entrypoint []string + Env []string + Image string + Memory MemoryConfig + Mounts []Mount + Ports []Port + Volumes []Volume + type Container struct + CID string + Command string + Config Config + HostConfig HostConfig + Image string + LB struct{ ... } + Name string + Ports []Port + State State + type DNSConfig struct + Options []string + Search []string + Server []string + type HostConfig struct + Binds []string + CPU CPUConfig + DNS DNSConfig + Memory MemoryConfig + Ports []Port + Privileged bool + RestartPolicy RestartPolicyConfig + type IContainers interface + BuildImage func(opts BuildImageOptions) error + ListContainers func() (map[string]Container, error) + ListImages func() (map[string]Image, error) + PullImage func(i Image) error + RemoveContainer func(*Container) error + RestartContainer func(*Container) error + StartContainer func(*Container) error + StopContainer func(*Container) error + System func() (*Node, error) + type ILDB interface + Read func(key string, i interface{}) error + Remove func(key string) error + Write func(key string, i interface{}) error + type ILog interface + Debug func(...interface{}) + Debugf func(string, ...interface{}) + Error func(...interface{}) + Errorf func(string, ...interface{}) + Fatal func(...interface{}) + Fatalf func(string, ...interface{}) + Info func(...interface{}) + Infof func(string, ...interface{}) + SetDebugLevel func() + type IStorage interface + Delete func(ILog, string) error + ListAllFiles func(ILog) (map[string]string, error) + Read func(ILog, string) (string, error) + Write func(ILog, string, string) error + type Image struct + Auth AuthConfig + Name string + type MemoryConfig struct + Kernel int64 + Reservation int64 + Swap int64 + Swappiness int64 + Total int64 + type Mount struct + Destination string + Driver string + Mode string + Name string + RW bool + Source string + type Node struct + Architecture string + CPU struct{ ... } + Driver struct{ ... } + Hostname string + IPs []struct{ ... } + Memory struct{ ... } + OS struct{ ... } + Storage struct{ ... } + UUID string + type Port struct + Container int64 + Host int64 + Protocol string + type RestartPolicyConfig struct + Attempt int + Name string + type State struct + Error string + ExitCode int + Finished time.Time + OOMKilled bool + Paused bool + Pid int + Restarting bool + Running bool + Started time.Time + type Volume struct + Container string + Host string + Options string