Im trying to get a docker container running to mange my cronjobs
im running a very simple cron as a test in a docker container using centOS 6.5 base
* * * * * /bin/echo "it works!" >> test.log
it works fine if the container is running on CoreOS host, however if I run the container on a ubuntu 13.10 host the cron is not executed. (I though the host did not effect what was running in the container)
both hosts are running docker 0.8
am I missing something obvious, or it this a bug?
thanks