I recently have a problem when I want to execute docker-compose command in crontab.
I have a docker-compose YAML file that defined all the services I need, say “docker-compose.yml". And I also have a Makefile in which I had written some command to do something.
My makefile is:
.PHONY operate
operate:
/usr/local/bin/docker-compose -p /project -f ~/docker-compose-production.yml run rails env
This make script worked fine when it executed in shell. It listed all the environment var I defined in docker-compose.yml. But when I putted it in crontab.
The result became strange, it listed nothing but only the $PATH
.
My crontab file is:
57 21 * * * make -f ~/Makefile operate >~/temp 2>&1
I guess there must be some environment var that docker-compose must have but I don’t know. Do you have any idea about this problem?
You won't need any environment variables to drive Docker Compost that you aren't already using for Docker. Most of those are unneeded unless you are connecting to a remote Docker host.
What I suspect is that cron is executing as a different user with a different set of permissions that doesn't have access to the Docker socket. Maybe you can add a line to your Makefile in order to debug this. You can use the 'whoami' command to output the name of the current user.