Maintenance Tasks
Weekdays at 7 AM
Daily system check. This page shows you how to implement this cron schedule with detailed examples and execution times.
1
Runs per day
10
Next executions
11
Expression length
Cron Expression
0 7 * * 1-5
Human Readable
Every weekday at 7:00 AM
Field Breakdown
| Field | Value | Meaning |
|---|---|---|
| Minute | 0 | When during the hour (0-59) |
| Hour | 7 | What hour of the day (0-23) |
| Day | * | What day of the month (1-31) |
| Month | * | What month (1-12) |
| Day of Week | 1-5 | What day of the week (0-7, 0=Sunday) |
Next 10 Execution Times
2026-07-29 07:00:00 UTC
2026-08-05 07:00:00 UTC
2026-08-12 07:00:00 UTC
2026-08-19 07:00:00 UTC
2026-08-26 07:00:00 UTC
2026-09-02 07:00:00 UTC
2026-09-09 07:00:00 UTC
2026-09-16 07:00:00 UTC
2026-09-23 07:00:00 UTC
2026-09-30 07:00:00 UTC
Note: Times shown in UTC. Adjust for your local timezone as needed.
Implementation Examples
Linux Crontab
0 7 * * 1-5 /path/to/your/script.sh
Add this line to your crontab file using crontab -e
Docker Compose
services:
cron-job:
image: your-app:latest
command: |
sh -c 'echo "0 7 * * 1-5 /app/script.sh" | crontab - && crond -f'
Kubernetes CronJob
apiVersion: batch/v1
kind: CronJob
metadata:
name: weekdays-at-7-am
spec:
schedule: "0 7 * * 1-5"
jobTemplate:
spec:
template:
spec:
containers:
- name: job
image: your-app:latest
command: ["/app/script.sh"]
restartPolicy: OnFailure
GitHub Actions
name: Weekdays at 7 AM
on:
schedule:
- cron: '0 7 * * 1-5'
jobs:
run:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run task
run: ./script.sh
Common Use Cases
Daily system check
- • Server restarts and updates
- • Cache and temporary file cleanup
- • Database optimization
- • System resource management
Test This Expression
Use our free cron tools to test and validate this expression:
Learn More About Cron
Understand the syntax and patterns behind this expression:
More Maintenance Tasks Examples
Every Sunday at 5 AM
Server restart and updates
0 5 * * 0
Every 3 days at midnight
Log cleanup
0 0 */3 * *
1st and 15th at 6 AM
Bi-monthly maintenance
0 6 1,15 * *
Every Saturday at 10 PM
Weekly optimization
0 22 * * 6
Every Sunday at 3:30 AM
Cache cleanup
30 3 * * 0
Every Monday at 4 AM
Weekly system update
0 4 * * 1