Creating a multi-tier solution by using services in Azure with API Management Part 1 – Create an app service app using Docker
1 min read

Creating a multi-tier solution by using services in Azure with API Management Part 1 – Create an app service app using Docker

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.

Leave a Reply