github.com/rohankumardubey/draft-classic@v0.16.0/docs/acr-build.md (about)

     1  ## Drafting with ACR Build
     2  
     3  To use [ACR Build](https://aka.ms/acr/build) as your preferred container image builder, you must first have an account on Microsoft Azure.
     4  
     5  Once you have an account there, there are two steps for preparing Draft to use ACR Build as a target for building images.
     6  
     7  1. Log in with `az login` on the command line.
     8  2. Create an Azure Container Registry. Currently ACR Build is only supported in Container Registries deployed in EastUS and EastUS2.
     9  3. Configure Draft to use the `acrbuild` container image builder. To do this, you need to know your Container Registry name and the Resource Group it was deployed to.
    10  
    11  ```console
    12  $ draft config set container-builder acrbuild
    13  $ draft config set registry myregistry.azurecr.io
    14  $ draft config set resource-group-name the-resource-group-i-deployed-acr-to
    15  ```
    16  
    17  Once that's done, invoke `draft up` and you'll be using the ACR Build container image builder!