cli/command/container: fix redefinition of the built-in function close (revive)
cli/command/container/run.go:176:3: redefines-builtin-id: redefinition of the built-in function close (revive) close, err := attachContainer(ctx, dockerCli, &errCh, config, createResponse.ID) ^ Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
Родитель
a9fff59809
Коммит
be97731f1a
|
@ -173,11 +173,11 @@ func runContainer(dockerCli command.Cli, opts *runOptions, copts *containerOptio
|
||||||
dockerCli.ConfigFile().DetachKeys = opts.detachKeys
|
dockerCli.ConfigFile().DetachKeys = opts.detachKeys
|
||||||
}
|
}
|
||||||
|
|
||||||
close, err := attachContainer(ctx, dockerCli, &errCh, config, createResponse.ID)
|
closeFn, err := attachContainer(ctx, dockerCli, &errCh, config, createResponse.ID)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
defer close()
|
defer closeFn()
|
||||||
}
|
}
|
||||||
|
|
||||||
statusChan := waitExitOrRemoved(ctx, dockerCli, createResponse.ID, copts.autoRemove)
|
statusChan := waitExitOrRemoved(ctx, dockerCli, createResponse.ID, copts.autoRemove)
|
||||||
|
|
Загрузка…
Ссылка в новой задаче