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

Specify refspecs in docker-friendly repo:reference format.

This commit is contained in:
Christian Speckner
2016-02-17 17:27:59 +01:00
parent c174cc5b3d
commit c7b84fac6e
9 changed files with 128 additions and 24 deletions

View File

@@ -34,7 +34,7 @@ type TagDetails interface {
type RegistryApi interface {
ListRepositories() RepositoryListResponse
ListTags(repositoryName string) TagListResponse
GetTagDetails(repository, reference string) (TagDetails, error)
DeleteTag(repository, reference string) error
GetTagDetails(ref Refspec) (TagDetails, error)
DeleteTag(ref Refspec) error
GetStatistics() Statistics
}