Search code examples
docker-composeazure-web-app-serviceaspnetboilerplateabp-framework

Deploy Asp.Net ABP angular and asp.net core with Docker Compose to Azure


I have a project with Asp.Net ABP angular and asp.net core.

With Docker, it will build with docker like below:

enter image description here

I am wondering how to deploy them to Azure Docker Compose.


Solution

  • Take a look at this quick start guide. You can create a web app by using following CLI command

    az webapp create --resource-group myResourceGroup --plan myAppServicePlan --name <app_name> --multicontainer-config-type compose --multicontainer-config-file docker-compose.yml
    

    If you use the portal, create a Web App for Containers app service specifying your container registry and upload your docker-compose.yml file.

    create-azure-web-app-for-containers