Cron Monday at 8 AM

0 8 * * 1

Every Monday at 8:00 AM

Next 10 Executions

Times shown in UTC

  • Mon, May 25, 202608:00
  • Mon, Jun 1, 202608:00
  • Mon, Jun 8, 202608:00
  • Mon, Jun 15, 202608:00
  • Mon, Jun 22, 202608:00
  • Mon, Jun 29, 202608:00
  • Mon, Jul 6, 202608:00
  • Mon, Jul 13, 202608:00
  • Mon, Jul 20, 202608:00
  • Mon, Jul 27, 202608:00

Field Breakdown

0
Minute
0
8
Hour
8
*
Day of Month
Every day
*
Month
Every month
1
Day of Week
Mon

About This Schedule

The cron expression 0 8 * * 1 fires every Monday at 8:00 AM. The 0 sets the minute to zero, 8 targets hour 8 (8 AM in 24-hour time), and 1 in the day-of-week field means Monday.

This is a classic start-of-week schedule. Teams use it to kick off weekly builds, send Monday morning status reports, refresh dashboards before standup, or trigger weekly data aggregation pipelines. If your team starts earlier, swap 8 for 6 or 7.

Remember that cron uses the server's timezone by default. If your team spans multiple timezones, consider running at a UTC time that works for everyone, or use timezone-aware schedulers like systemd timers.

Frequently Asked Questions