mirror of
https://github.com/docker/cli.git
synced 2026-08-31 02:24:13 -05:00
when i was using: docker search --automated -s 3 nginx told me: Flag --automated has been deprecated, use --filter=automated=true instead Flag --stars has been deprecated, use --filter=stars=3 instead and when i use: docker search --filter=automated=true --filter=stars=3 nginx told me: Error response from daemon: Invalid filter 'automated' and i found out that the correct command should be: docker search --filter=is-automated=true --filter=stars=3 nginx Signed-off-by: Pure White <daniel48@126.com> Upstream-commit: 1d61f11e34ba6f1efdfd29a03d92181586bdcb93 Component: engine