Now running on #Mastodon #V1.3.2, and fixed an issue with cron tasks that were not run !
#MPT (Mastodon pro tips) : Call commands with full path inside crontabs, otherwise, the tasks won't run (cron does not seem to know about PATH...). Ex:
30 03 * * * cd /opt/mastodon && /usr/local/bin/docker-compose run --rm web rake mastodon:daily >/dev/null 2>&1
This will run the daily task at 3h30 in the morning, and throw all output into /dev/null.