mirror of
https://github.com/coollabsio/coolify-docs.git
synced 2026-06-19 07:35:55 +00:00
a64450ae9d
Replace VitePress/Vue stack with Fumadocs MDX, TanStack Start, React 19, and Vite. Migrate all documentation content to MDX under content/docs/. Add full src/ app with React components, routing, search, and API page. Remove Korrektly integration from CI/CD workflows, Dockerfile, and env vars. Update build pipeline to output to .output/public instead of docs/.vitepress/dist.
31 lines
987 B
Plaintext
31 lines
987 B
Plaintext
---
|
|
title: "Supported Cron Syntax"
|
|
description: "Complete cron syntax reference for Coolify scheduled tasks including standard format and predefined schedules like hourly, daily, and weekly."
|
|
---
|
|
|
|
# Supported Cron Syntax
|
|
Coolify supports scheduling automated tasks like cleanups, backups, and more using cron syntax.
|
|
|
|
## Supported Syntax
|
|
|
|
### Standard Cron Format
|
|
Coolify supports the complete standard cron syntax format (`* * * * *`).
|
|
|
|
### Predefined Schedules
|
|
For convenience, Coolify also supports the following predefined schedule strings:
|
|
|
|
#### Without @ Prefix
|
|
- `every_minute` - Runs every minute
|
|
- `hourly` - Runs once per hour
|
|
- `daily` - Runs once per day
|
|
- `weekly` - Runs once per week
|
|
- `monthly` - Runs once per month
|
|
- `yearly` - Runs once per year
|
|
|
|
#### With @ Prefix
|
|
- `@every_minute` - Runs every minute
|
|
- `@hourly` - Runs once per hour
|
|
- `@daily` - Runs once per day
|
|
- `@weekly` - Runs once per week
|
|
- `@monthly` - Runs once per month
|
|
- `@yearly` - Runs once per year |