How To Run Container Background Tasks With Cron By Using Supervisord

Have you ever faced this scenario where you want to run two or more lightweight services or multiple executables within the same container when the image starts running?
Recently I worked on a PHP application that used cron
for background processing. Since it took some time to get it right, I’m sharing the solution.
This solution runs Cron
as a secondary process in a PHP webserver container. Supervisor
controls these processes, and ensures that the container fails as soon as any process fails. Although SupervisorD adds another layer of complexity ,it is indeed a very simple and useful way to manage multiple services .
The Dockerfile sets the required crontab file permissions and starts Supervisor.
Supervisor starts Cron with the following configuration.
Cron runs in foreground mode (cron -f
) to allow supervisor to control it.
Supervisors process environment is exported to /run/supervisord.env
. This allows Cron jobs to import the Docker/Kubernetes environment variables. The environment is imported by the following Cron job as an example.
Extras, Dynamic add cron task - Command not found?
Our PHP application is dynamically add crontask and sometime it does not provide full PATH
of the command and sometime we might want to use ENV
variable. Cron runs commands on a time-based schedule with a minimal environment.
Cron passes a minimal set of environment variables to your jobs. To see the difference, add a dummy job like this:
Wait for /tmp/env.output to be created, then remove the job again. Now compare the contents of /tmp/env.output with the output of env run in your regular terminal.
A common “gotcha” here is the PATH environment variable being different. Maybe your cron script uses the command somecommand found in /opt/someApp/bin
, which you’ve added to PATH in /etc/environment
? cron ignores PATH from that file, so runnning somecommand from your script will fail when run with cron, but work when run in a terminal. It’s worth noting that variables from /etc/environment
will be passed on to cron jobs, just not the variables cron specifically sets itself, such as PATH.
To get around that, just set your own PATH variable at the top of the script. E.g.
Some prefer to just use absolute paths to all the commands instead. I recommend against that. Consider what happens if you want to run your script on a different system, and on that system, the command is in /opt/someAppv2.2/bin
instead. You’d have to go through the whole script replacing /opt/someApp/bin
with /opt/someAppv2.2/bin
instead of just doing a small edit on the first line of the script.
You can also set the PATH variable in the crontab file, which will apply to all cron jobs. E.g.
So we might want to use the last option and put in our dockerfile
Run this function script when building your docker image and you will pre-append the PATH to your cron file.