Copy file to Docker volume in Azure context
问题 I run these docker commands locally to copy a file to a volume, this works fine: docker container create --name temp_container -v temp_vol:/target hello-world docker cp somefile.txt temp_container:/target/. Now I want to do the same, but with volumes located in Azure. I have an image azureimage that I pushed and it's located in Azure, and I need to access from the container a volume with a file that I have in my local disk. I can create the volume in an Azure context like so: docker context