# Docker Hub

Configure Valohai to pull private images from Docker Hub.

> Private registries are restricted to organization projects. Personal projects don't have access to private repositories.

## Create an access token

1. Log in to [hub.docker.com](https://hub.docker.com)
2. Click your username (top-right) → **Account Settings**
3. Select **Security** → **New Access Token**
4. Add a description (e.g., "Valohai access token")
5. Set permissions (Read-only is sufficient for pulling images)
6. Click **Generate**
7. **Copy the token immediately**—Docker Hub won't show it again

Read more: [Docker Hub access tokens](https://docs.docker.com/docker-hub/access-tokens/)

## Add credentials to Valohai

1. Navigate to `Hi, <name>` (top-right menu) → `Manage <organization>`
2. Go to **Registries** under organization controls
3. Click **Add a new entry**
4. Configure:
   * **Match pattern**: `docker.io/<username>/*`
     * Example: `docker.io/mycompany/*`
     * Matches all repositories under your username/organization
   * **Registry type**: Docker (username and password authentication)
   * **Username**: Your Docker Hub username
   * **Password**: The access token you created (not your account password)
5. Save

## Use the private image

Reference your Docker Hub image in `valohai.yaml`:

```yaml
- step:
    name: train
    image: docker.io/mycompany/ml-training:v2.0
    command:
      - python train.py
```

You can also use the short form (Valohai expands it automatically):

```yaml
- step:
    name: train
    image: mycompany/ml-training:v2.0
    command:
      - python train.py
```

Valohai handles authentication automatically.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.valohai.com/docker-in-valohai/private-docker-registries/docker-hub.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
