Hello Tamal Majumder,
I understand you're encountering an issue where your Azure Container Instances (ACI) deployment is stuck and your existing containers are not starting up. It's definitely frustrating when services don't behave as expected.
While there have been no widespread outages reported on the official Azure status page for today, September 10, 2025, issues like the one you are describing can sometimes be intermittent or specific to a region or even a particular cluster within Azure's infrastructure. Users have reported similar "stuck" or "pending" states for their container instances in the past.
Here are a few troubleshooting steps you can take to diagnose and potentially resolve the problem:
Check Service Health in your Portal: First, check the Azure Service Health dashboard within your own Azure portal. It provides a personalized view of the health of the Azure services and regions you use.
Stop and Restart the Container Group: A common and effective first step is to manually stop and then start your container group. This action can redeploy your container group to a new, potentially healthier host on the Azure backend.
Review Logs and Events: You can often find specific error messages by checking the logs and events for your container group. Use the Azure CLI to get more details : az container logs --resource-group <your-resource-group> --name <your-container-group-name>
Check Regional Capacity and Quotas: The issue might be related to resource constraints in the specific Azure region you are deploying to, or your subscription might have reached its quota for resources like CPU cores or memory. Consider trying to deploy in a different region to see if the problem persists.
Verify the Image: Ensure that the container image exists in the registry and that the image name is typed correctly in your deployment configuration. A long delay can sometimes be caused by issues pulling the image.
If you continue to experience this problem after trying these steps, the best course of action is to open a support ticket with Azure Support. They have access to the backend telemetry and can investigate the root cause of the deployment failure.
For more detailed guidance, you can also refer to the official Microsoft documentation for troubleshooting Azure Container Instances.
I hope this information helps you get your containers running again.
Best regards,
Jerald Felix