Add error message for aws context

Signed-off-by: aiordache <anca.iordache@docker.com>
This commit is contained in:
aiordache 2020-08-19 18:22:07 +02:00
parent 44b2b8b21d
commit 6657dd2774
1 changed files with 4 additions and 0 deletions

View File

@ -82,6 +82,10 @@ func checkComposeSupport(ctx context.Context) error {
if err != nil {
return err
}
if cc.Type() == store.AwsContextType {
return errors.Errorf(`%q context type has been renamed. Recreate the context by running:
$ docker context create %s <name>`, cc.Type(), store.EcsContextType)
}
return errors.Wrapf(errdefs.ErrNotImplemented, "compose command not supported on context type %q", cc.Type())
}
return err