---
title: "Pulling Koios Image"
description: "Download the Koios Docker image from the registry"
source_url: https://ai-ops.com/docs/installation/pulling-koios-image
---

# Pulling Koios Image

The Koios Docker image is hosted on Docker Hub. Pull it to your server before starting the container.

## Pull the Latest Image

```bash
docker pull aiopinc/koios:latest
```

The image is approximately 2 GB. Download time depends on your internet connection.

## Pull a Specific Version

To pin a specific release version:

```bash
docker pull aiopinc/koios:v1.0.0
```

Replace `v1.0.0` with the desired version tag.

## Verify the Image

Confirm the image was downloaded successfully:

```bash
docker images | grep aiopinc/koios
```

You should see the `aiopinc/koios` image listed with the appropriate tag.

> [!NOTE] Offline / Air-Gapped Environments
> If your server does not have internet access, contact your Ai-OPs representative for an offline installation bundle. The bundle includes the Koios image as a compressed archive that can be loaded directly with `docker load`.

## What's Next

- [Running Koios as a Service](https://ai-ops.com/docs/installation/running-as-a-service.md) — recommended for production deployments
- [Manually Starting Koios](https://ai-ops.com/docs/installation/manually-starting-koios.md) — for development or testing
