

📌 Giải đề DRAG DROP: Di chuyển tất cả lệnh CLI theo đúng thứ tự
1. Yêu cầu đề bài
Bạn cần triển khai một ASP.NET Core Web App chạy trên Docker và map custom domain (www.fourthcoffee.com
) vào Azure App Service Web App.
- Resource Group:
FourthCoffeePublicWebResourceGroup
(đã có sẵn). - App Service Plan:
AppServiceLinuxDockerPlan
(đã tạo trước trong khu vực WestUS). - Yêu cầu chính: ✅ Tạo Web App để chạy trên App Service for Containers.
✅ Cấu hình Web App để sử dụng Docker Image.
✅ Thêm custom domain (www.fourthcoffee.com
) vào Web App.
Yêu cầu đặc biệt từ đề bài: Move all of the CLI commands và arrange chúng theo đúng thứ tự.
2. Các bước triển khai đúng
1️⃣ Tạo Web App trong App Service Plan
az webapp create --name $appName --plan AppServiceLinuxDockerPlan --resource-group FourthCoffeePublicWebResourceGroup
- Lệnh này tạo Web App và liên kết với App Service Plan.
2️⃣ Cấu hình Docker Container cho Web App
az webapp config container set --docker-custom-image-name $dockerHubContainerPath --name $appName --resource-group FourthCoffeePublicWebResourceGroup
- Thiết lập Docker Image (
$dockerHubContainerPath
chứa đường dẫn image trên Docker Hub).
3️⃣ Thêm Custom Domain vào Web App
az webapp config hostname add --webapp-name $appName --resource-group FourthCoffeePublicWebResourceGroup --hostname $fqdn
- Gán custom domain (
www.fourthcoffee.com
) vào Web App.
4️⃣ Chạy script để khai báo các biến (nếu cần)
#!/bin/bash
appName="FourthCoffeePublicWeb$RANDOM"
location="WestUS"
dockerHubContainerPath="FourthCoffee/publicweb:v1"
fqdn="http://www.fourthcoffee.com"
- Xác định các biến trước khi thực thi các lệnh CLI.
3. Đáp án chính xác
Thứ tự | Azure CLI Command |
---|---|
1️⃣ | #!/bin/bash ... (Khai báo biến) |
2️⃣ | az webapp create (Tạo Web App) |
3️⃣ | az webapp config container set (Cấu hình Docker Container) |
4️⃣ | az webapp config hostname add (Gán Custom Domain) |
4. Tại sao cần di chuyển tất cả các lệnh?
✅ Đề bài yêu cầu “Move all of the Azure CLI commands”, nên tất cả lệnh đều phải được đặt vào Answer Area.
✅ Thứ tự sắp xếp hợp lý đảm bảo việc triển khai Web App đúng theo quy trình.
5. Kết luận
🚀 Thứ tự chính xác để triển khai ASP.NET Core Web App trên Docker với Custom Domain trong Azure App Service:
- Khai báo biến (
#!/bin/bash ...
). - Tạo Web App (
az webapp create
). - Cấu hình Docker Container (
az webapp config container set
). - Gán Custom Domain (
az webapp config hostname add
).
🔥 Đây là cách hoàn chỉnh và đúng nhất để triển khai ứng dụng trong Azure App Service for Containers! 🚀