Azure 网络应用程序部署

Azure webapp deployment

我正在学习准备 AZ-204 考试,遇到了一大堆问题。有一个问题我正在努力解决,它与通过 cli 部署 web 应用程序有关。我要给出的答案在一个地方是不同的,那就是通过 az webapp config hostname

绑定主机名

这是被问到的问题

Fourth Coffee has an ASP.NET Core web app that runs in Docker. The app is mapped to the www.fourthcoffee.com domain.
Fourth Coffee is migrating this application to Azure.
You need to provision an App Service Web App to host this docker image and map the custom domain to the App Service web app.
A resource group named FourthCoffeePublicWebResourceGroup has been created in the WestUS region that contains an App Service Plan named
AppServiceLinuxDockerPlan.
Which order should the CLI commands be used to develop the solution? To answer, move all of the Azure CLI commands from the list of commands to the answer area and arrange them in the correct order.
Select and Place:

我的顺序是 id 答案是从上到下的数字 1 - 4

4、3、2、1

但答案是

我的问题确实是,您如何设置尚未创建的网络应用程序的主机名,或者这是一个没有正确复制答案的狡猾网站。微软文档没有提供任何答案

答案应该是 4 3 1 2 或 4 3 2 1(没关系)

4 - 设置任何需要的变量

3 - 创建网络应用程序

1 - 配置容器

2 - 设置完全限定域名

或者你可以选择 4 3 2 1

屏幕截图中提供的答案是错误的,您不能在创建网络应用程序之前添加主机名。

这可能是一个不了解容器和网络应用程序如何工作的狡猾网站