Complete the command to search for Docker images related to 'nginx'.
docker [1] nginxThe docker search command is used to find images on Docker Hub matching the search term.
Complete the command to search for images with the term 'python' and show only official images.
docker search --[1] is-official=true pythonThe --filter option lets you narrow down search results, for example by official images.
Fix the error in the command to search for 'mysql' images showing only those with more than 100 stars.
docker search --filter stars[1]100 mysql
The correct syntax for the filter is --filter stars=100. The filter matches images with at least that many stars.
Fill both blanks to search for official 'node' images and limit results to 5.
docker search --[1] is-official=true --[2]=5 node
Use --filter=is-official=true to get official images and --limit=5 to restrict results to 5.
Fill all three blanks to search for 'redis' images, filter official ones, and limit results to 3.
docker search --[1] is-official=true --[2]=[3] redis
Use --filter=is-official=true to get official images, --limit=3 to limit results, and the value 3 for the limit.