Container stuck in "Waiting" state

Fahad Mustafa 16 Reputation points
2021-06-09T23:41:07.12+00:00

Hi,

I have an ACI that was running fine but suddenly stopped and cannot restart. The container state is stuck in the "Waiting" state. Attempts to redeploy fail after 30 mins timeout.

I'm deploying through GitHub actions. I see this log:

Created container;Started container;Subscription deployment didn't reach a successful provisioning state after '00:30:00'.;Subscription deployment didn't reach a successful provisioning state after '00:30:00'.;Subscription deployment didn't reach a successful provisioning state after '00:30:00'.".

Image is hosted on GitHub's docker repo.

I've pulled and run the container locally without issues.

I've also deleted the container instance and created again. No luck there.

Azure Container Instances
Azure Container Instances
An Azure service that provides customers with a serverless container experience.
670 questions
{count} votes

7 answers

Sort by: Most helpful
  1. Tango C 0 Reputation points
    2023-09-13T13:37:57.28+00:00

    Any solution on this ? Changing container name not working, stuck to waiting state.

    0 comments No comments

  2. Rodrigo Morais 0 Reputation points
    2024-04-09T22:05:02.6766667+00:00

    I am having the same issue.

    I built and pushed this image to acr:
    And when pulling from aci from acr/dockerhub it stays waiting and Im clueless why

    FROM mongo:latest
    
    ENV MONGO_INITDB_ROOT_USERNAME=admin
    ENV MONGO_INITDB_ROOT_PASSWORD=admin
    
    EXPOSE 27017
    
    VOLUME /data/db
    
    
    
    0 comments No comments