Daniel Glos
Daniel Glos

Reputation: 87

Which container service to choose in Azure

We are planning to use docker for our new project and I'm kinda not sure what are the differences in various services azure provides you. Especially the following:

Container instances

Service Fabric cluster

App Services

These are the options when creating new container. Can someone please explain what are the differences? Which to choose and when?

Upvotes: 2

Views: 213

Answers (1)

Sajeetharan
Sajeetharan

Reputation: 222582

Did you have a chance to look out the reference ?

Understand the basic features If you're not familiar with the Azure service selected in the previous step, read the overview documentation to understand the basics of the service.

  • App Service. A managed service for hosting web apps, mobile app back ends, RESTful APIs, or automated business processes.
  • Azure Kubernetes Service (AKS). A managed Kubernetes service for running containerized applications.
  • Batch. A managed service for running large-scale parallel and high-performance computing (HPC) applications
  • Container Instances. The fastest and simplest way to run a container in Azure, without having to provision any virtual machines and without having to adopt a higher-level service.
  • Functions. A managed FaaS service.
  • Service Fabric. A distributed systems platform that can run in many environments, including Azure or on premises.
  • Virtual machines. Deploy and manage VMs inside an Azure virtual network.

enter image description here

Upvotes: 1

Related Questions