mirror of https://github.com/docker/cli.git
cli/command: move default context description to context itself
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
parent
6a734df1cc
commit
acb934cc9d
|
@ -58,5 +58,8 @@ func GetDockerContext(storeMetadata store.Metadata) (DockerContext, error) {
|
||||||
if !ok {
|
if !ok {
|
||||||
return DockerContext{}, errors.New("context metadata is not a valid DockerContext")
|
return DockerContext{}, errors.New("context metadata is not a valid DockerContext")
|
||||||
}
|
}
|
||||||
|
if storeMetadata.Name == DefaultContextName {
|
||||||
|
res.Description = "Current DOCKER_HOST based configuration"
|
||||||
|
}
|
||||||
return res, nil
|
return res, nil
|
||||||
}
|
}
|
||||||
|
|
|
@ -59,9 +59,6 @@ func runList(dockerCli command.Cli, opts *listOptions) error {
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
if rawMeta.Name == command.DefaultContextName {
|
|
||||||
meta.Description = "Current DOCKER_HOST based configuration"
|
|
||||||
}
|
|
||||||
desc := formatter.ClientContext{
|
desc := formatter.ClientContext{
|
||||||
Name: rawMeta.Name,
|
Name: rawMeta.Name,
|
||||||
Current: rawMeta.Name == curContext,
|
Current: rawMeta.Name == curContext,
|
||||||
|
|
Loading…
Reference in New Issue