update docker search to reflect future changes of the api
This commit is contained in:
parent
1d50d7a59f
commit
2c26420bc4
1 changed files with 11 additions and 3 deletions
|
@ -615,10 +615,18 @@ func (r *Registry) GetAuthConfig(withPasswd bool) *auth.AuthConfig {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type SearchResult struct {
|
||||||
|
StarCount int `json:"star_count"`
|
||||||
|
IsOfficial bool `json:"is_official"`
|
||||||
|
Name string `json:"name"`
|
||||||
|
IsTrusted bool `json:"is_trusted"`
|
||||||
|
Description string `json:"description"`
|
||||||
|
}
|
||||||
|
|
||||||
type SearchResults struct {
|
type SearchResults struct {
|
||||||
Query string `json:"query"`
|
Query string `json:"query"`
|
||||||
NumResults int `json:"num_results"`
|
NumResults int `json:"num_results"`
|
||||||
Results []map[string]string `json:"results"`
|
Results []SearchResult `json:"results"`
|
||||||
}
|
}
|
||||||
|
|
||||||
type RepositoryData struct {
|
type RepositoryData struct {
|
||||||
|
|
Loading…
Reference in a new issue