mastodon.codingfield.com is part of the decentralized social network powered by Mastodon.

Administered by:

Server stats:

1
active users

Learn more

JF

Now running on .3.2, and fixed an issue with cron tasks that were not run !
(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.