Docker + cron, daily automatic actions not executing anymore

I am using kanboard through the official docker image on a windows system.

I have created among others, 3 automatic actions for my kanboard project that have:
Event name = “Daily background job for tasks”
At first those actions did execute daily but not anymore. I thought it might be the time that cron does the daily jobs so I decided to change it to be activated at 12.00. After some search I change the /etc/crontabs/nginx of my container to this:
1 2 * * * cd /var/www/app && ./cli cronjob >/dev/null 2>&1

Still nothing happens, the last couple of days I am also checking the logging, For the period the container is running there are logs for … cmd run-parts /etc/periodic/15min or /hourly but not /daily. Am I doing something wrong?

Also the folder /etc/periodic/daily is empty although I have created those 3 daily automatic actions, is that how it’s supposed to be?