mirror of
https://github.com/docker/compose.git
synced 2026-06-25 18:48:47 +00:00
Fix docker context ls that was not displaying legacy context endpoints
This commit is contained in:
parent
667cdfcbf8
commit
d0b2bfbf52
3 changed files with 9 additions and 7 deletions
|
|
@ -94,7 +94,7 @@ func getEndpoint(name string, meta map[string]interface{}) string {
|
|||
if !ok {
|
||||
return ""
|
||||
}
|
||||
data, ok := endpoints.(store.Endpoint)
|
||||
data, ok := endpoints.(*store.Endpoint)
|
||||
if !ok {
|
||||
return ""
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue