I have so far only found examples on how to create a volume on the host machine, e.g:
version: "3.3"
services:
mysql:
image: mysql
volumes:
- db-data:/var/lib/mysql/data
volumes:
db-data:
So this defines a volume named db-data that will physically be stored on the host machine running the container.
Is is possible to makes the db-data volume point to an Azure File Share in an Azure Storage account and how would I specify the needed parameters?