1
0
mirror of https://github.com/mayflower/docker-ls.git synced 2025-11-28 00:01:09 +03:00

Include layers in output.

This commit is contained in:
Christian Speckner
2016-02-17 15:54:51 +01:00
parent 414b384431
commit c178aefa24
4 changed files with 46 additions and 6 deletions

View File

@@ -19,11 +19,16 @@ type TagListResponse interface {
LastError() error
}
type LayerDetails interface {
ContentDigest() string
}
type TagDetails interface {
RawManifest() interface{}
ContentDigest() string
RepositoryName() string
TagName() string
Layers() []LayerDetails
}
type RegistryApi interface {