Running cron in Docker ubuntu
… TL;DR If you are having trouble with cron not working on Docker Ubuntu, you can make it work by making your Dockerfile like below. You can stop using CMD at the end and change it to RUN cron -f & or something like that. FROM ubuntu:18.04 RUN apt-get update && apt-get install cron RUN echo '* * * * * echo Hello World > /var/log/cron.log' > /etc/cron.d/crontab RUN chmod 0644 /etc/cron....