Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type DockerRepositoryFetcher ¶
type DockerRepositoryFetcher struct {
// contains filtered or unexported fields
}
type Graph ¶
type Graph interface { Get(name string) (*image.Image, error) Exists(imageID string) bool Register(image *image.Image, imageJSON []byte, layer archive.ArchiveReader) error }
apes docker's *graph.Graph
type Registry ¶
type Registry interface { GetRepositoryData(repoName string) (*registry.RepositoryData, error) GetRemoteTags(registries []string, repository string, token []string) (map[string]string, error) GetRemoteHistory(imageID string, registry string, token []string) ([]string, error) GetRemoteImageJSON(imageID string, registry string, token []string) ([]byte, int, error) GetRemoteImageLayer(imageID string, registry string, token []string, size int64) (io.ReadCloser, error) }
apes docker's *registry.Registry
Click to show internal directories.
Click to hide internal directories.