在本地,我用docker run -it -p 80:5000 --name myApp -v P:\myPath\myData:/myData启动容器
docker run -it -p 80:5000 --name myApp -v P:\myPath\myData:/myData
如何从azure安装应用服务文件夹?
我不得不使用以下行调整Dockerfile:
# this map's the azure App Service folder to the container. RUN ln -s /home/myData /myDataOnTheContainer
并且应用程序设置中的WEBSITES_ENABLE_APP_SERVICE_STORAGE设置必须设置为true。
WEBSITES_ENABLE_APP_SERVICE_STORAGE
true