I have a docker container with Red hat 7.2 version installed. In the docker file I installed cronie and cron. Typing the following command: rpm -qa|grep cron The result is: cronie-anacron-1.4.11-14.el7.x86_64 crontabs-1.11-6.20121102git.el7.noarch cronie-1.4.11-14.el7.x86_64
I also defined a crontab file :
* * * * * echo "hi there" >> /tmp/test
The crontab doesn't run. Why ?
Thanks :) Chen