Also from our developer toolkit network — JSON Tools Kit · see all
Business & Reporting

15th of month at 11 AM

Mid-month review. This page shows you how to implement this cron schedule with detailed examples and execution times.

1
Runs per day
0
Next executions
11
Expression length

Cron Expression

0 11 15 * *

Human Readable

At minute 0, hour 11, day 15

Field Breakdown

Field Value Meaning
Minute 0 When during the hour (0-59)
Hour 11 What hour of the day (0-23)
Day 15 What day of the month (1-31)
Month * What month (1-12)
Day of Week * What day of the week (0-7, 0=Sunday)

Implementation Examples

Linux Crontab

0 11 15 * * /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 11 15 * * /app/script.sh" | crontab - && crond -f'

Kubernetes CronJob

apiVersion: batch/v1
kind: CronJob
metadata:
  name: 15th-of-month-at-11-am
spec:
  schedule: "0 11 15 * *"
  jobTemplate:
    spec:
      template:
        spec:
          containers:
          - name: job
            image: your-app:latest
            command: ["/app/script.sh"]
          restartPolicy: OnFailure

GitHub Actions

name: 15th of month at 11 AM
on:
  schedule:
    - cron: '0 11 15 * *'
jobs:
  run:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - name: Run task
        run: ./script.sh

Common Use Cases

Mid-month review

  • • Automated business reports
  • • Sales and analytics summaries
  • • Team notifications and updates
  • • Monthly and quarterly reviews

Test This Expression

Use our free cron tools to test and validate this expression: