You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
flags.BoolVarP(&options.force, "force", "f", false, "Force removal of the image")
43
44
flags.BoolVar(&options.noPrune, "no-prune", false, "Do not delete untagged parents")
44
45
45
-
// TODO(thaJeztah): create a "platforms" option for this (including validation / parsing).
46
-
flags.StringSliceVar(&options.platforms, "platform", nil, `Remove only the given platform variant. Formatted as "os[/arch[/variant]]" (e.g., "linux/amd64")`)
46
+
flags.Var(opts.NewPlatformSlice(&options.platforms), "platform", `Remove only the given platform variant. Formatted as "os[/arch[/variant]]" (e.g., "linux/amd64")`)
0 commit comments