Share via

Azure container apps cannot start

Van Huy Tuyen 80 Reputation points
2026-05-27T08:22:14.57+00:00

Dear team,

Please help us to check asap. Our Azure contaner apps cannot start.

It worked normally before.

User's image

Azure Container Apps
Azure Container Apps

An Azure service that provides a general-purpose, serverless container platform.


1 answer

Sort by: Most helpful
  1. Pravallika KV 16,525 Reputation points Microsoft External Staff Moderator
    2026-05-27T10:14:29.76+00:00

    Hi @Van Huy Tuyen ,

    As Siddhesh Desai informed over offline discussion, run below commands to deactivate revision, start/stop container app, and activate revision:

    Deactivate revision:

    az containerapp revision deactivate --name <APP_NAME> --resource-group <RG> --revision <REVISION_NAME> --subscription <subscription-id>
    

    Start the container app:

    az rest --method POST --url "/subscriptions/<SUBSCRIPTION_ID>/resourceGroups/<RESOURCE_GROUP>/providers/Microsoft.App/containerApps/<APP_NAME>/start?api-version=2026-01-01"
    

    Stop the container app:

    az rest --method POST --url "/subscriptions/<SUBSCRIPTION_ID>/resourceGroups/<RESOURCE_GROUP>/providers/Microsoft.App/containerApps/<APP_NAME>/stop?api-version=2026-01-01"
    

    Activate the revision:

    az containerapp revision activate --name <APP_NAME> --resource-group <RG> --revision <REVISION_NAME> --subscription <subscription-id>
    

    Hope this helps!


    If the resolution was helpful, kindly take a moment to click on User's imageand click on Yes for was this answer helpful. And, if you have any further query do let us know.

    Was this answer helpful?


Your answer

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