Azure WebApp Fails to pull from ACR after making zero changes

Noah Tucker 15 Reputation points
2023-04-16T17:37:39.1533333+00:00

I deployed an Azure WebApp successfully pulling from Azure Container Registry yesterday. After the day, I stopped the WebApp. When I attempted to turn it back on, I received the following error message:

  • 2023-04-16T17:05:45.988Z ERROR - Pulling docker image itinerary-creator-backend:latest failed:
    2023-04-16T17:05:46.067Z ERROR - DockerApiException: Docker API responded with status code=NotFound, response={"message":"pull access denied for itinerary-creator-backend, repository does not exist or may require 'docker login': denied: requested access to the resource is denied"}
    2023-04-16T17:05:46.069Z WARN - Image pull failed. Defaulting to local copy if present.
    2023-04-16T17:05:46.073Z ERROR - Image pull failed: Verify docker image configuration and credentials (if using private repository) Can someone help me figure out what is going wrong? The following has been verified:
  1. The System Assigned identity of the WebApp has the ACRPull role on the Azure Container Registry
  2. The image and tag EXIST in the Azure Container Registry --> Repositories
  3. The Deployment Center in the Azure Portal for the WebApp shows the following correctly
    1. System Assigned Identity
    2. Azure Container Registry name
    3. Image name
    4. Image tag
  4. The APP_SETTINGS have all of the following set properly
    1. DOCKER_REGISTRY_SERVER_URL
    2. DOCKER_REGISTRY_SERVER_USERNAME
    3. DOCKER_REGISTRY_SERVER_PASSWORD
Azure Container Registry
Azure Container Registry
An Azure service that provides a registry of Docker and Open Container Initiative images.
476 questions
Azure App Service
Azure App Service
Azure App Service is a service used to create and deploy scalable, mission-critical web apps.
8,179 questions
0 comments No comments
{count} votes

3 answers

Sort by: Most helpful
  1. Indra Dutta 10 Reputation points
    2023-11-06T07:41:59.2833333+00:00

    I have a similar issue. This kind of problem should be a must fix for any cloud provider. These problems are very random with web app deployment using container and I have to spend a full day trying to get it working only to have the same problem again next day for apparently no reason. Just restarting the app is not a solution - MSFT should get to the root of these problems.

    2 people found this answer helpful.
    0 comments No comments

  2. Dale 5 Reputation points
    2023-12-27T20:45:30.7633333+00:00

    Running into same problem.

    All settings work great interactively...hit save...and it loses its mind...barfs and says it can load the container because of an authentication issue?

    what exactly was it doing when it authenticated.

    So many years...so many problems...azure web apps are just a terrible black box that can fail at any moment.

    good luck this will always be a buggy service...10 years running.

    i wish they would start over and dump their entire code base that was built just for .NET and not containers or any other code platform.

    1 person found this answer helpful.
    0 comments No comments

  3. brtrach-MSFT 17,166 Reputation points Microsoft Employee
    2023-04-19T00:03:45.0166667+00:00

    It seems like the error message is indicating that the WebApp is unable to pull the Docker image from the Azure Container Registry. Based on the information you have provided; it appears that the WebApp is properly configured to access the Azure Container Registry. However, there are a few things you can try to resolve the issue:

    1. Check if the image and tag are still available in the Azure Container Registry. It is possible that the image and tag were deleted or overwritten, which could cause the WebApp to fail to pull the image.
    2. Check if the Azure Container Registry is running and accessible. You can try to access the Azure Container Registry directly to verify that it is running and accessible.
    3. Check if the Docker image configuration is correct. Verify that the Docker image configuration in the WebApp is correct, including the Docker registry server URL, username, and password.
    4. Try restarting the WebApp. Sometimes, restarting the WebApp can resolve issues with pulling Docker images. If none of these steps resolve the issue, it is possible that there is an issue with the WebApp or Azure Container Registry that requires further investigation. Please reply to us and let us know if that is the case.
    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.