Merge pull request #6344 from thaJeztah/remove_builder_newprunecommand

cli/command/trust: remove deprecated NewPruneCommand
This commit is contained in:
Sebastiaan van Stijn
2025-08-22 12:41:14 +02:00
committed by GitHub
-7
View File
@@ -32,13 +32,6 @@ type pruneOptions struct {
keepStorage opts.MemBytes
}
// NewPruneCommand returns a new cobra prune command for images
//
// Deprecated: Do not import commands directly. They will be removed in a future release.
func NewPruneCommand(dockerCli command.Cli) *cobra.Command {
return newPruneCommand(dockerCli)
}
// newPruneCommand returns a new cobra prune command for images
func newPruneCommand(dockerCLI command.Cli) *cobra.Command {
options := pruneOptions{filter: opts.NewFilterOpt()}