docs: add caution about env var CRON_TIME

This commit is contained in:
2024-11-30 16:25:48 -07:00
parent 6378dd28cf
commit b03b2d3b58

View File

@@ -97,6 +97,23 @@ services:
<br />
> [!CAUTION]
> Do **not** add quotation marks to `CRON_TIME` environment variable
>
> ✔️ Correct
> ```yml
> environment:
> - CRON_TIME=*/60 * * * *
> ```
>
> ❌ Incorrect
> ```yml
> environment:
> - CRON_TIME="*/60 * * * *"
> ```
<br />
---
<br />