> For the complete documentation index, see [llms.txt](https://docs.valohai.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.valohai.com/docker-in-valohai/private-docker-registries/acr.md).

# Azure Container Registry

Configure Valohai to pull private images from Azure Container Registry (ACR).

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

## Create a service principal

Follow Microsoft's guide: [Create and use service principal credentials](https://docs.microsoft.com/en-us/azure/container-registry/container-registry-auth-service-principal)

### Quick steps

1. Create a service principal with read access to your ACR:

```shell
az ad sp create-for-rbac \
  --name valohai-acr-reader \
  --role acrpull \
  --scopes /subscriptions/<subscription-id>/resourceGroups/<resource-group>/providers/Microsoft.ContainerRegistry/registries/<registry-name>
```

2. Save the output:
   * `appId` (your username)
   * `password` (your password)

## Add credentials to Valohai

1. Navigate to `Hi, <n>` (top-right menu) → `Manage <organization>`
2. Go to **Registries** under organization controls
3. Click **Add a new entry**
4. Configure:
   * **Match pattern**: `<registry-name>.azurecr.io/*`
     * Example: `mycompany.azurecr.io/*`
     * Or narrow it: `mycompany.azurecr.io/ml-images/*`
   * **Registry type**: Docker (username and password authentication)
   * **Username**: Service principal's `appId`
   * **Password**: Service principal's `password`
5. Save

## Use the private image

Reference your ACR image in `valohai.yaml`:

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

Valohai handles authentication automatically.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

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

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
