Question 10 of 179 from exam AZ-204: Developing Solutions for Microsoft Azure

Question 10 of 179 from exam AZ-204: Developing Solutions for Microsoft Azure

Question

DRAG DROP - You are developing a Docker/Go using Azure App Service Web App for Containers.

You plan to run the container in an App Service on Linux.

You identify a Docker container image to use.

None of your current resource groups reside in a location that supports Linux.

You must minimize the number of resource groups required.

You need to create the application and perform an initial deployment.

Which three Azure CLI commands should you use to develop the solution? To answer, move the appropriate commands from the list of commands to the answer area and arrange them in the correct order.

Select and Place:

Azure CLI Commands

az group create

az group update

az webapp update

az webapp create

az appservice plan create

Answer Area

©
@

OO

Explanations

Azure CLI Commands

Answer Area

az webapp create

az appservice plan create

©
@

az group create az group create
az group update az appservice plan create
az webapp update az webapp create

OO

You can host native Linux applications in the cloud by using Azure Web Apps.

To create a Web App for Containers, you must run Azure CLI commands that create a group, then a service plan, and finally the web app itself.

Step 1: az group create - In the Cloud Shell, create a resource group with the az group create command.

Step 2: az appservice plan create In the Cloud Shell, create an App Service plan in the resource group with the az appservice plan create command.

Step 3: az webapp create - In the Cloud Shell, create a web app in the myAppServicePlan App Service plan with the az webapp create command.

Don't forget to replace with a unique app name, and <docker-ID> with your Docker ID.

https://docs.microsoft.com/mt-mt/azure/app-service/containers/quickstart-docker-go?view=sql-server-ver15