Lokasi ngalangkungan proxy:   [ UP ]  
[Ngawartoskeun bug]   [Panyetelan cookie]                
Skip to content

Latest commit

 

History

History
30 lines (20 loc) · 1.44 KB

File metadata and controls

30 lines (20 loc) · 1.44 KB
title Deploy a Python web app to Azure with managed identity: deploy the container image to App Service
description How to deploy a containerized Python (Django or Flask) to App Service.
author jess-johnson-msft
ms.author jejohn
ms.devlang python
ms.topic tutorial
ms.date 07/07/2022
ms.prod azure-python
ms.custom devx-track-python, devx-track-azurecli

Deploy a containerized Python app to App Service

This article is part of a tutorial about how to containerize and deploy a Python web app to Azure App Service. App Service enables you to run containerized web apps and deploy through continuous integration/continuous deployment (CI/CD) capabilities with Docker Hub, Azure Container Registry, and Visual Studio Team Services. In this part of the tutorial, you learn how to deploy the containerized Python web app to App Service using the App Service Web App for Containers, which allows you to focus on composing your containers without worrying about managing and maintaining an underlying container orchestrator.

Notes:

  • Managed identity is set up automatically as way of App Service to authorize to Registry.

  • Webhook is automatically created for you. you can view webhooks in the Azure Container Registry. Or list them with "az acr webhook" command.

1. Create the Azure App Service

2. Configure App Service for the sample app

3. Verify the deployment

Next Steps