Azure CLI Documentation for az appservice plan create: The --is-linux parameter is documented for creating an App Service plan to host Linux web apps.
Microsoft, "az appservice plan create," Azure CLI Reference, Microsoft Docs. Accessed October 2, 2025. Available: https://learn.microsoft.com/en-us/cli/azure/appservice/plan?view=azure-cli-latest#az-appservice-plan-create
Azure CLI Documentation for az webapp create: The --deployment-container-image-name (or its alias --image) parameter is used to specify the container image for the web app.
Microsoft, "az webapp create," Azure CLI Reference, Microsoft Docs. Accessed October 2, 2025. Available: https://learn.microsoft.com/en-us/cli/azure/webapp?view=azure-cli-latest#az-webapp-create
Azure CLI Documentation for az webapp config container set: This command is used to configure the container settings, including the private registry server URL and credentials. The parameters -u/--docker-registry-server-user and -p/--docker-registry-server-password are explicitly for this purpose.
Microsoft, "az webapp config container set," Azure CLI Reference, Microsoft Docs. Accessed October 2, 2025. Available: https://learn.microsoft.com/en-us/cli/azure/webapp/config/container?view=azure-cli-latest#az-webapp-config-container-set
Tutorial: Deploy a custom container to App Service: This official tutorial shows the use of az webapp config container set with the registry URL, username, and password to pull an image from a private registry like ACR.
Microsoft, "Deploy a custom container to App Service," Azure App Service Documentation, Microsoft Docs. Accessed October 2, 2025. Available: https://learn.microsoft.com/en-us/azure/app-service/tutorial-custom-container