Home > Software engineering >  Host Microservices on Azure without Kubernetes
Host Microservices on Azure without Kubernetes

Time:07-09

I want to host microservices on Azure platform. But my Customer don't want to use AKS (Azure Kubernetes Service).

So Anyone have idea for same? Is there any other proper way for hosting microservices on azure?

Please guide me.

CodePudding user response:

Assuming that you are running your micro services in a Docker container. The other ways to run container apps in azure are:

  • Azure App Service
  • Azure Container Services
  • Run Docker on an Azure VM

Probably the Azure App Service is the best place to start.

CodePudding user response:

You should look at Azure Container Apps.

  • Related