I am trying to get a list of all the official images from the Docker Store. However, I could not find any simple way to get the list. Docker CLI has a docker search
command but it does not have any argument to get
a list of all the images from the Docker Store and then filter it later.
Any ideas how it could be done?
docker search --filter is-official=true *
– Flotsam