I'm looking to mount an Azure file share so that I can use it as an external volume in my Docker containers. Specifically, I want Apache Airflow, which I'm running with Astronomer, to access DAG files stored on the Azure file share. Does anyone have guidance on this?
1 Answer
To mount an Azure file share in your Docker container, you can refer to the Microsoft documentation about using Azure Files as a volume. It covers how to set it up in container instances. Just keep in mind that this is for container instances; if you're running Docker locally, the setup might differ, and you may need to explore other configurations.
So you're saying this method is only for Azure container instances? I can't do this locally?