Add rm --all flag for backward compatibility (deprecated - no effect)

Signed-off-by: Guillaume Tardif <guillaume.tardif@gmail.com>
This commit is contained in:
Guillaume Tardif 2021-04-28 14:36:17 +02:00
parent 38b4220bdb
commit 850f81c44f
1 changed files with 3 additions and 0 deletions

View File

@ -56,6 +56,9 @@ Any data which is not in a volume will be lost.`,
f.BoolVarP(&opts.force, "force", "f", false, "Don't ask to confirm removal")
f.BoolVarP(&opts.stop, "stop", "s", false, "Stop the containers, if required, before removing")
f.BoolVarP(&opts.volumes, "volumes", "v", false, "Remove any anonymous volumes attached to containers")
f.BoolP("all", "a", false, "Deprecated - no effect")
f.MarkHidden("all") //nolint:errcheck
return cmd
}