From b03b2d3b58f44d811127a064955f37c0f757a3fa Mon Sep 17 00:00:00 2001 From: Aetherinox Date: Sat, 30 Nov 2024 16:25:48 -0700 Subject: [PATCH] docs: add caution about env var CRON_TIME --- README.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/README.md b/README.md index 90f3de54..decd9eb1 100644 --- a/README.md +++ b/README.md @@ -97,6 +97,23 @@ services:
+> [!CAUTION] +> Do **not** add quotation marks to `CRON_TIME` environment variable +> +> ✔️ Correct +> ```yml +> environment: +> - CRON_TIME=*/60 * * * * +> ``` +> +> ❌ Incorrect +> ```yml +> environment: +> - CRON_TIME="*/60 * * * *" +> ``` + +
+ ---