
Lets do another of the Microsoft Labs, this time lab 08 here.
First we create a resource group and an app service plan.
az group create --location westeurope -n 08lab-rg
az appservice plan create --name 08lab-appservice \
--resource-group 08lab-rg \
--sku FREE \
--is-linux \
--location westeurope

Next go into the Azure portal and create your new webapp from a dockerhub container.

Now let’s use Postman to check if our HTTP Request & Response Service is responding.

Great! In the next post we will build an API proxy tier by using Azure API Management.