# Redis Docker Hub Images Scraper

**Use case:** 

Scrape Docker Hub for redis images with pull count, stars, official flag and description for image selection.

## Input

```json
{
  "searchQuery": "redis",
  "maxItems": 50
}
```

## Output

```json
{
  "repoName": {
    "label": "Image"
  },
  "shortDescription": {
    "label": "Description"
  },
  "starCount": {
    "label": "Stars"
  },
  "pullCount": {
    "label": "Pulls"
  },
  "isOfficial": {
    "label": "Official"
  },
  "isAutomated": {
    "label": "Automated"
  },
  "repoOwner": {
    "label": "Owner"
  },
  "repoUrl": {
    "label": "Link"
  }
}
```

## About this Actor

This example demonstrates how to use [Docker Hub Images Scraper - Stars, Pulls & Descriptions](https://apify.com/scrapers_lat/dockerhub-images-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/scrapers_lat/dockerhub-images-scraper) to learn more, explore other use cases, and run it yourself.