nerdexam
Microsoft

AZ-204 · Question #411

Drag and Drop Question 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

The correct answer is az group create; az appservice plan create; az webapp create. The correct sequence follows the logical Azure resource hierarchy: first create a resource group (az group create) in a Linux-supported region to house all resources, then create an App Service Plan with Linux OS configuration (az appservice plan create --is-linux), and finally c

Submitted by kev92· Mar 30, 2026Implement Azure App Service Web Apps - specifically deploying containerized applications using Azure CLI, understanding resource provisioning order, and configuring App Service Plans for Linux-based container workloads.

Question

Drag and Drop Question 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. Answer:

Exhibit

AZ-204 question #411 exhibit

Answer Area

Drag items

az group createaz group updateaz webapp updateaz webapp createaz appservice plan create

Correct arrangement

  • az group create
  • az appservice plan create
  • az webapp create

Explanation

The correct sequence follows the logical Azure resource hierarchy: first create a resource group (az group create) in a Linux-supported region to house all resources, then create an App Service Plan with Linux OS configuration (az appservice plan create --is-linux), and finally create the Web App for Containers pointing to the Docker image (az webapp create --deployment-container-image-name). This three-step sequence is the minimum required to deploy a containerized application on Azure App Service on Linux.

Topics

#Azure App Service#Docker Containers#Azure CLI#Web App for Containers

Community Discussion

No community discussion yet for this question.

Full AZ-204 Practice