mirror of
https://github.com/TheBinaryNinja/tvapp2.git
synced 2026-06-04 11:55:41 -04:00
docs(readme): add environment varaible quotation warning
This commit is contained in:
21
README.md
21
README.md
@@ -154,6 +154,27 @@ For the [environment variables](#environment-variables), you may specify these i
|
|||||||
|
|
||||||
#### Environment Variables
|
#### Environment Variables
|
||||||
|
|
||||||
|
This following is a list of environment variables you can tell within your Docker container.
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
|
> [!CAUTION]
|
||||||
|
> Do **not** add `"` quotation marks to environment variables.
|
||||||
|
>
|
||||||
|
> ✔️ Correct
|
||||||
|
> ```yml
|
||||||
|
> environment:
|
||||||
|
> - CRON_TIME=*/60 * * * *
|
||||||
|
> ```
|
||||||
|
>
|
||||||
|
> ❌ Incorrect
|
||||||
|
> ```yml
|
||||||
|
> environment:
|
||||||
|
> - CRON_TIME="*/60 * * * *"
|
||||||
|
> ```
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
| Env Var | Default | Description |
|
| Env Var | Default | Description |
|
||||||
| --- | --- | --- |
|
| --- | --- | --- |
|
||||||
| `TZ` | `Etc/UTC` | Timezone for error / log reporting |
|
| `TZ` | `Etc/UTC` | Timezone for error / log reporting |
|
||||||
|
|||||||
Reference in New Issue
Block a user