 Documentation
      ¶
      Documentation
      ¶
    
    
  
    
  
    Index ¶
- func StoreImage(img *Image, jsonData []byte, layerData archive.ArchiveReader, ...) error
- type Graph
- type Image
- func (img *Image) Depth() (int, error)
- func (img *Image) GetParent() (*Image, error)
- func (img *Image) GetParentsSize(size int64) int64
- func (img *Image) History() ([]*Image, error)
- func (img *Image) RawJson() ([]byte, error)
- func (img *Image) SaveSize(root string) error
- func (img *Image) SetGraph(graph Graph)
- func (img *Image) TarLayer() (arch archive.Archive, err error)
- func (img *Image) WalkHistory(handler func(*Image) error) (err error)
 
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func StoreImage ¶
Types ¶
type Image ¶
type Image struct {
	ID              string            `json:"id"`
	Parent          string            `json:"parent,omitempty"`
	Comment         string            `json:"comment,omitempty"`
	Created         time.Time         `json:"created"`
	Container       string            `json:"container,omitempty"`
	ContainerConfig runconfig.Config  `json:"container_config,omitempty"`
	DockerVersion   string            `json:"docker_version,omitempty"`
	Author          string            `json:"author,omitempty"`
	Config          *runconfig.Config `json:"config,omitempty"`
	Architecture    string            `json:"architecture,omitempty"`
	OS              string            `json:"os,omitempty"`
	Size            int64
	// contains filtered or unexported fields
}
    func NewImgJSON ¶
Build an Image object from raw json data
func (*Image) GetParentsSize ¶
func (*Image) History ¶
Image includes convenience proxy functions to its graph These functions will return an error if the image is not registered (ie. if image.graph == nil)
 Click to show internal directories. 
   Click to hide internal directories.