You use Visual Studio to create an ASP.NET web app named billing and enable Docker Compose support. You publish the app to Docker Hub. You then sign into Azure and create a Windows container app for the web app.
You need to view the progress of the app as it is starting up.
What should you do?
You should visit http://billing.azurewebsites.net/api/logstream. This endpoint provides progress information for web app container instances.
You should not run the following Azure CLI command: az container show --name billing. This command shows the status of a container instance's provisioning state. It does not show its entire progress.
You should not run the following PowerShell cmdlet: Get-AzureRmContainerGroup -Name billing. This cmdlet shows the status of a container instance's provisioning state. It does not show its entire progress.
You should not visit http://billing.scm.azurewebsites.net/api/deployments. This endpoint returns a JSON view of a web app deployment.