Azure App Service is a service used to create and deploy scalable, mission-critical web apps.
Hi @Prykhodko, Oleksii (ext) (RC-UA DI S SAC),
When using the new Sidecar container model in Azure App Service, mounting an Azure File Share is configured differently than in Docker Compose–based multi-container deployments. In Sidecar architecture, you must first create an Azure Storage mount at the Web App level by navigating to Configuration Path mappings and adding the Azure Files share. This step mounts the file share to the underlying App Service host. After the storage mount is created, you then attach it to the required container (for example, the ASP.NET backend container) by configuring the Volume mounts section in the container settings. Here, the Volume sub path represents the logical shared directory from the previously created storage mount, and the Container mount path defines the folder inside the container where the storage will be accessible for read/write operations. Containers that use the same volume sub path can share files through this mounted Azure File Share. This approach replaces the earlier Docker Compose volume mapping behavior and is the currently supported and documented method for persistent shared storage in multi-container (Sidecar) Azure Web App deployments.
https://learn.microsoft.com/en-us/azure/app-service/configure-connect-to-azure-storage?tabs=basic%2Cportal&pivots=container-linux
https://learn.microsoft.com/en-us/azure/app-service/configure-sidecar
Let me know if you have any further assistances needed.