> ## Documentation Index
> Fetch the complete documentation index at: https://api.docs.flare.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Docker Image

The `docker_image` type represents a Docker image discovered on Docker Hub that has been recently created or updated. Image manifests are scanned for identifiers and secrets.

Each record corresponds to a single image and may include:

* The image digest and the tags it is published under, with their repository names.
* Platform details (architecture and operating system).
* When the image was last pushed and last pulled.
* The raw image manifest content.

```json Docker Image theme={null}
{
    "event_type": "docker_image",
    "data": {
        "content": "Docker image description",
        "digest": "sha256:e4b991038fd226016a60046db2109bf634f7f4b4ea9a2c548b559d3652e4cc38",
        "architecture": "amd64",
        "os": "linux",
        "last_pushed_at": "2025-01-01T00:00:00",
        "last_pulled_at": "2025-01-01T00:00:00",
        "tags": [
            {
                "name": "latest",
                "repository_name": "flared/docker"
            }
        ]
    },
    "metadata": {
        "estimated_created_at": "2025-01-01T00:00:00",
        "flare_url": "https://app.flare.io/#/uid",
        "matched_at": null,
        "severity": "info",
        "uid": "index/source/id"
    }
}
```
