I have a project with Asp.Net ABP angular and asp.net core.
With Docker, it will build with docker like below:
I am wondering how to deploy them to Azure Docker Compose.
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.