How to fix ACR Tasks requests for the registry readitmemiac and 345c601d-2340-4181-9a32-b8f58d881e12 are not permitted.Please file an Azure support request at http://aka.ms/azuresupport for assistance.

ORUNO EDUVIE 0 Reputation points
2024-03-04T20:38:37.85+00:00

I am trying to build a docker file on visual studio to Azure

Azure Container Registry
Azure Container Registry
An Azure service that provides a registry of Docker and Open Container Initiative images.
403 questions
{count} votes

1 answer

Sort by: Most helpful
  1. vipullag-MSFT 24,881 Reputation points
    2024-03-05T13:41:17.1033333+00:00

    Hello ORUNO EDUVIE

    Welcome to Microsoft Q&A Platform, thanks for posting your query here.

    Welcome to Microsoft Q&A Platform, thanks for posting your query here.

    As mentioned in this document, ACR is temporarily pausing ACR Tasks runs from Azure free credits.

    User's image

    As a work around please try the below and see if that helps.

    Work around using docker CLI commands:

    1. Login to the ACR using az acr login -n $ACRNAME -p <password>
    2. Tag the image first- docker tag <image name>:latest <ACR registry name>.azurecr.io/<image name>
    3. Push the image to ACR from docker - docker push <ACR registry name>.azurecr.io/<image name>

    The images will now appear in your ACR -

    az acr repository list --name $ACRNAME --output table

    Similar issues reported, Ref: https://learn.microsoft.com/en-us/answers/questions/1530524/how-to-fix-(tasksoperationsnotallowed)-acr-tasks-r

    Hope this helps.

    0 comments No comments