6 minute read

I am sure you have heard of App Service's feature called Local Cache, which allows to cache all the files locally on the instance instead of pulling them from the shared storage which can lower the application's load times - especially when using just-in-time compiled code like PHP. This great feature however, is only available currently on App Service on Windows, and in this article, we are going to explore the options of having something similar on App Service on Linux powered by Docker.

Since App Service on Linux gives you a lot of freedom with regards to your runtime environment, there is probably not going to be an official alternative anytime soon provided by Microsoft. However, when coming to think about it - there are two options which can get us there:

Local Cache directly in the Docker container

First off, we are going to explore the harder but more obvious option - handling the Local Cache directly within the Docker image. That of course requires you to know how to make such an image.

With that knowledge, you could simply build the image directly with the source code embedded into the container and ship the code with the container. That is the most usual approach, however, what if you want to be able to use FTP, Git publishing or CI without having the rebuild the image all over again? You would go and take the runtime image approach. With that, the process requires a very simple change in your Docker image:

All you have to do is to add a command to the Dockerfile's startup script which will copy the entire content of /home/site/wwwroot/ to the destination folder which is located within the image itself. The command to copy the content could look like this:

cp -R /home/site/wwwroot/* /var/www/html/ # replace /var/www/html with your local folder

Just like with App Service on Windows, whenever you change the content of your shared storage, you will have to restart the containers in order for them to fetch the new content. Such action can be very easily hooked into your Continuous Delivery process with Visual Studio Team Services for example.

When speaking of restarts, it is good to note that App Service on Linux uses overlapped recycling which means that when you restart the App Service, the orchestrator on the background is going to wait before killing the previous container until a new one is up and running which can minimize the downtime a lot.

Local Cache using startup file

Initially, I was expecting this to be a much more simple process however I ran into some issues and I wouldn't recommend this approach to be used in production.

When choosing a Docker container for your App Service on Linux site, you can also specify the Startup file which will get executed upon the container's start. It seems to be the equivalent to adding the COMMAND argument when using docker run. That has generally two implications:

It allows you to leverage local cache and eventually perform other container modifications without modifying the image itself which gives you the opportunity to do a lot of things with the container without the knowledge of its Dockerfile and having to rebuild it (you shouldn't be doing this without knowing everything it is going to affect tho and should generally avoid this method). However it also overrites the CMD specified within the Dockerfile itself which will in most of the cases break the Docker image.

The way to solve this, is to create your custom startup script, for example start.sh and place it into the persistent file system (so either upload it through FTP or push it to your Git repo) for example to application's /home/site/ directory. The contents of the script have to include at least following:

#!/bin/bash
mkdir /var/www
cp -R /home/site/wwwroot/* /var/www/
exec /bin/init_container.sh # or any other command that you overwrote from the Dockerfile with your custom script

In first place, we create the folder with the local content - this could be already done in your image (for Apache it would be /var/www/html/), then copy the contents of the persistent file system, just like you would do in a custom Docker container and then, you would call the Docker's original CMD (or eventually include the contents of the original script directly) just to make sure that the container gets instantied correctly (so in the case of HHVM container - sshd service gets started and HHVM web server is started too).

After you have the script set, you then need to set it as a startup command to execute your script so for example /home/site/start.sh.

Summary

These are the two possibilities to create a Local Cache equivalent in App Service on Linux, however if you are trying to go for a Local Cache, you should definitely take the direct container approach which makes it easier and more straightforward. The second option - overriding the container's startup command/script is rather an antipattern and you should avoid it.

Also, thanks to Nick Walker (@nickwalkmsft) for helping out with couple of issues I ran into while exploring the second option of creating a Local Cache by overriding the startup command!

To submit comments, go to GitHub Discussions.