Files
redmine/pre-entrypoint.sh
Roman Vaníček cac8e78626
Some checks failed
continuous-integration/drone/push Build is failing
Schedule rake redmine:send_reminders to run periodically.
2023-03-09 17:02:25 +01:00

9 lines
273 B
Bash

#!/usr/bin/env bash
set -Eeo pipefail
echo "0 7 * * * root cd /usr/src/redmine && rake redmine:send_reminders days=$REDMINE_SEND_REMINDERS_DAYS RAILS_ENV=production" > /etc/cron.d/redmine
chmod 0644 /etc/cron.d/redmine
set -- /docker-entrypoint.sh "$@"
exec "$@"