How to mount docker volume in Azure Web App for containers?
问题 I'm trying to run KrakenD image in Azure App Service. KrakenD requires json config file krakend.json to be put into /etc/krakend/ ( KrakenD image is based on Linux Alpine ) I created Web App for containers with the following docker-compose file: version: "3" services: krakend: image: devopsfaith/krakend:latest volumes: - ${WEBAPP_STORAGE_HOME}/site/krakend:/etc/krakend ports: - "8080:8080" restart: always Added storage account with a blob container where uploaded sample kraken.json file In