@@ -35,9 +35,13 @@ func AddCommands(cmd *cobra.Command, dockerCli command.Cli) {
3535 container .NewExecCommand (dockerCli ),
3636 //nolint:staticcheck // TODO: Remove when migration to cli/internal/commands.Register is complete. (see #6283)
3737 container .NewPsCommand (dockerCli ),
38+ //nolint:staticcheck // TODO: Remove when migration to cli/internal/commands.Register is complete. (see #6283)
3839 image .NewBuildCommand (dockerCli ),
40+ //nolint:staticcheck // TODO: Remove when migration to cli/internal/commands.Register is complete. (see #6283)
3941 image .NewPullCommand (dockerCli ),
42+ //nolint:staticcheck // TODO: Remove when migration to cli/internal/commands.Register is complete. (see #6283)
4043 image .NewPushCommand (dockerCli ),
44+ //nolint:staticcheck // TODO: Remove when migration to cli/internal/commands.Register is complete. (see #6283)
4145 image .NewImagesCommand (dockerCli ),
4246 registry .NewLoginCommand (dockerCli ),
4347 registry .NewLogoutCommand (dockerCli ),
@@ -55,6 +59,7 @@ func AddCommands(cmd *cobra.Command, dockerCli command.Cli) {
5559 //nolint:staticcheck // TODO: Remove when migration to cli/internal/commands.Register is complete. (see #6283)
5660 container .NewContainerCommand (dockerCli ),
5761 context .NewContextCommand (dockerCli ),
62+ //nolint:staticcheck // TODO: Remove when migration to cli/internal/commands.Register is complete. (see #6283)
5863 image .NewImageCommand (dockerCli ),
5964 manifest .NewManifestCommand (dockerCli ),
6065 network .NewNetworkCommand (dockerCli ),
@@ -113,11 +118,17 @@ func AddCommands(cmd *cobra.Command, dockerCli command.Cli) {
113118 hide (container .NewUpdateCommand (dockerCli )),
114119 //nolint:staticcheck // TODO: Remove when migration to cli/internal/commands.Register is complete. (see #6283)
115120 hide (container .NewWaitCommand (dockerCli )),
121+ //nolint:staticcheck // TODO: Remove when migration to cli/internal/commands.Register is complete. (see #6283)
116122 hide (image .NewHistoryCommand (dockerCli )),
123+ //nolint:staticcheck // TODO: Remove when migration to cli/internal/commands.Register is complete. (see #6283)
117124 hide (image .NewImportCommand (dockerCli )),
125+ //nolint:staticcheck // TODO: Remove when migration to cli/internal/commands.Register is complete. (see #6283)
118126 hide (image .NewLoadCommand (dockerCli )),
127+ //nolint:staticcheck // TODO: Remove when migration to cli/internal/commands.Register is complete. (see #6283)
119128 hide (image .NewRemoveCommand (dockerCli )),
129+ //nolint:staticcheck // TODO: Remove when migration to cli/internal/commands.Register is complete. (see #6283)
120130 hide (image .NewSaveCommand (dockerCli )),
131+ //nolint:staticcheck // TODO: Remove when migration to cli/internal/commands.Register is complete. (see #6283)
121132 hide (image .NewTagCommand (dockerCli )),
122133 hide (system .NewEventsCommand (dockerCli )),
123134 hide (system .NewInspectCommand (dockerCli )),
0 commit comments