December 2019
Intermediate to advanced
510 pages
11h 33m
English
Let's walk through how to create an app service using the previously published image, which is already present in Azure Container Registry, that is, <registry_name>.azurecr.io/catalog_api:v1. As a first step, we need to create an app service plan using the following command:
az appservice plan create --name catalogServicePlan --resource-group <service_group_name> --sku FREE --is-linux
The app service plan is required for the creation of the app service: it defines a set of computing resources that are used to run all of the app services that are part of the same plan. For this example, we will use the most basic service plan, which can be specified using the following flag: --sku FREE. This ...
Read now
Unlock full access