From 086a389f4dfd22104eccb21fc8767435067bc3a8 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 24 Jan 2021 20:18:03 +0000 Subject: [PATCH] Bot Updating Documentation --- images/docker-healthchecks.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/images/docker-healthchecks.md b/images/docker-healthchecks.md index 2e5a2a61a..0e49806d6 100644 --- a/images/docker-healthchecks.md +++ b/images/docker-healthchecks.md @@ -57,6 +57,7 @@ services: - ALLOWED_HOSTS= - SUPERUSER_EMAIL= - SUPERUSER_PASSWORD= + - REGENERATE_SETTINGS=True/False volumes: - :/config ports: @@ -82,6 +83,7 @@ docker run -d \ -e ALLOWED_HOSTS= \ -e SUPERUSER_EMAIL= \ -e SUPERUSER_PASSWORD= \ + -e REGENERATE_SETTINGS=True/False \ -p 8000:8000 \ -v :/config \ --restart unless-stopped \ @@ -117,6 +119,7 @@ Docker images are configured using parameters passed at runtime (such as those a | `ALLOWED_HOSTS=` | array of valid hostnames for the server `["test.com","test2.com"]` or `"*"` | | `SUPERUSER_EMAIL=` | Superuser email | | `SUPERUSER_PASSWORD=` | Superuser password | +| `REGENERATE_SETTINGS=True/False` | Defaults to False. Set to true to always override the `local_settings.py` file with values from environment variables. Do not set to True if you have made manual modifications to this file. | ### Volume Mappings (`-v`)