Mounting Azure File Share As Volumes In Azure Containers - Step By Step Demo

When storing your application data, it is recommended that you should not directly store it in your Docker container.  Doing that would mean that the lifetime of your data and the lifetime of your container are bound together, which, in turn, prevents you from updating to a new version of the container without losing your data. You would obviously want to persist your data and to do that, you would have to store it in an attached volume.
 
Currently, the best suitable option for doing that with Azure Container Instances is to attach an Azure file share. In the near future, however, Azure Container Instances will probably support mounting Azure disks or even blob storage containers. All you need for now is a file share and as you know, file shares can be created inside an Azure Storage account.
 
Then if we want to mount that file share to our container when we create it with Azure CLI, we would need a set of four arguments that would allow us to configure it. We will see the arguments further during the demo part.
 
There are some limitations to this as well,
  1. You can only mount the whole share and not the subfolders within it.
  2. Share cannot be mounted as read-only.
  3. You can mount multiple volumes but not with Azure CLI and would have to use ARM templates instead.
  4. They are not supported on Windows Containers as of yet and that limits the usefulness of Windows Containers at the moment
In this demo, we will create an Azure Container Instance and mount an Azure File Share as a volume which we will use to extract a thumbnail from a video using the open-source FFMPEG tool. The container image we will use is simply an image from Docker Hub containing the FFMPEG binaries. We will then upload a video into our file share to use as the input file. We will create a new container group with an Azure File Share mounted as a volume and then we will write the output image to our file share. We will also use the command-line argument to override the startup command for the container which will specify the FFMPEG arguments for thumbnail extraction operation as well as the location of the input and output files. Last but not the least, we will specify the retry policy as not to restart.
 
Step 1
 
First of all, we will start by creating a resource group. (You can log in to your Azure account using the PowerShell command az login and set your preferred subscription).
 
Azure 
 
Step 2
 
Then, we will create a new storage account, specifying the resource group, a unique storage account name, and the Standard LRS pricing tier.
 
Azure 
 
Step 3
 
To upload files into our file share with Azure CLI, we will need to set up an environment variable that contains the storage account connection string and we can get hold of the connection string using the following command.
 
Azure 
 
Step 4
 
The environment variable needs to be called AZURE_STORAGE_CONNECTION_STRING and with that environment variable in place, we can now create our file share.
 
Azure 
 
Step 5
 
Next, we will call it with a name and then use az storage share create to create it by specifying the name of the share.
 
Azure 
 
Step 6
 
Now, we have a storage account with a file share in it, so let us upload our test file input to that share. My file here is demo.mp4 and it is stored on my local disk and I can use the following command to upload it into my share.
 
Azure 
  • We have all the setup that we needed. We have an Azure File Share that contains a single video file.
  • Now we are going to create an ACI container group that will mount this Azure file share as a volume.
Step 7
 
We need the storage key for the storage account so we'll access that using the az storage account keys list command and we will use a query parameter that allows us to pick out just the key we want.
 
Azure 
 
Step 8
 
We will give a name to our container group as transcodedemo and we will store the command line in a variable which we will be needing next.
 
Azure 
 
Step 9
 
Next, we will use the az container create command specifying the resource group name and the container group name. Then the container image that we're using which is Linux container that has got FFMPEG build installed. The restart policy would be set to never because if the thumbnail extraction fails, we wouldn't want it to loop around forever and keep on trying to do the same thing. The next four arguments specify the details of our mounted volume. The storage account name, the storage account key, the name of the Azure file share and the path within the container that we mounting it to. Lastly, our container won't know what we want it to do when it starts up. So we have provided a command line for it to execute. Here we are running FFMPEG with an input argument pointing to the file within our mounted Azure file share. And then there are some other FFMPEG specific arguments. In our case, we are asking it to extract a thumbnail image from the video and the final FFMPEG argument specifies the output file and we are telling it to write the thumbnail png file back into our mounted Azure file share.
 
Azure  
  • Your container group would have been created so far but it would take a bit longer to finish starting up the container and perform the thumbnail extraction. Next, we will do that.
  • If everything is working fine then the container should be transcoding our input file from the Azure file share with FFMPEG and should write the output thumbnail back to that same file share.
  • We can check that using az container logs command which will show us the output of the FFMPEG command and give us an idea if there was any problem.
Step 10
 
Run the following command to generate the logs of the container.
 
Azure 
 
Step 11
 
Here you will be able to see that FFMPEG has finished running and it has picked out a frame, in my case frame number 89 to use as the thumbnail.
 
Azure 
 
Step 12
 
To check the contents of our file share and see whether the thumbnail image is there or not, we will use the az storage file list command. And you would be able to see that the thumb.png file would be there alongside the input file.
 
Azure 
 
Step 13
 
Next, we will download the image with the az storage file download command and take a look at it.
 
Azure 
 
Step 14
 
The below image is what it has captured from the video that I had uploaded.
 
Azure
 
Step 15
 
You can delete the resource group once you have finished this demo by running the following command.
 
Azure 
So, in this demo, you saw how you can use Azure file shares as a volume which is very useful for you when you need to store data that needs to live independently of your container. And you also saw how a command-line argument can be used to control the startup command of our container.


Similar Articles