krakend

How to mount docker volume in Azure Web App for containers?

北城以北 提交于 2020-12-31 17:56:33
问题 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

How to mount docker volume in Azure Web App for containers?

元气小坏坏 提交于 2020-12-31 17:53:09
问题 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