skip to Main Content

I’m looking for an equivalent to Cloud Run (GCP offering) in Azure

In particular:

  1. It deploys a container
  2. Can scale down to 0
  3. Can serve a webapp

Does Azure have such a service?

I was looking at Azure App Service, but it seems to be missing the ability to scale down to 0.

2

Answers


  1. Azure Container Apps is similar to CGP Cloud Run.

    • It deploys a container: yes
    • Can scale down to 0: yes
    • Can serve a webapp: yes

    https://azure.microsoft.com/en-us/services/container-apps/

    Login or Signup to reply.
  2. I think the equivalent of Cloud Run would be Azure Container Instances rather than Azure Container Apps.
    I would say Azure Container Apps would be the equivalent of App Engine from Google Cloud which comes with more managed services around the served container like authentication, etc…

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search