You use the following commands to create a container in Azure:
az group create --name app1RG --location eastus
az container create --resource-group app1RG --name app1Container --image company1/app1Image --dns-name-label app1 --ports 80
You need to navigate to the application that is hosted in the container.
Which URL should you use?
You should navigate to app1.eastus.azurecontainer.io. The container application's URL format is [DNS label].[Azure region].azurecontainer.io.