As part of the setup of a docker container, the following gets injected into crontab:
*/10 * * * * /opt/run.sh >> /opt/run_log.log
According to the behavior of crontab, when should the first run kick off? Should the 10 minute cycle begin instantly, or 10 minutes after this is put into crontab. Neither behavior is happening so I am trying to debug this in more depth by trying to understand the intended behavior.
This cron sandbox simulator gives you an idea:
It uses the syntax:
See for example "Run a cron job with Docker" (by Julien Boulay)
If you replaced the first '' by '/10', you would have to wait to the next 0 or 10 or 20 or... of the hour.