Bot Updating Documentation

pull/48/head
LinuxServer-CI 2021-10-26 20:38:44 +02:00
rodzic 8b2edd723c
commit 75c7d3769b
1 zmienionych plików z 4 dodań i 1 usunięć

Wyświetl plik

@ -65,6 +65,7 @@ services:
- SUPERUSER_PASSWORD=<SUPERUSER_PASSWORD>
- REGENERATE_SETTINGS=True/False #optional
- SITE_LOGO_URL=<SITE_LOGO_URL> #optional
- SECRET_KEY=<SECRET_KEY> #optional
volumes:
- <path to data on host>:/config
ports:
@ -92,6 +93,7 @@ docker run -d \
-e SUPERUSER_PASSWORD=<SUPERUSER_PASSWORD> \
-e REGENERATE_SETTINGS=True/False `#optional` \
-e SITE_LOGO_URL=<SITE_LOGO_URL> `#optional` \
-e SECRET_KEY=<SECRET_KEY> `#optional` \
-p 8000:8000 \
-v <path to data on host>:/config \
--restart unless-stopped \
@ -122,11 +124,12 @@ Docker images are configured using parameters passed at runtime (such as those a
| `EMAIL_HOST_USER=<EMAIL_HOST_USER>` | SMTP user |
| `EMAIL_HOST_PASSWORD=<EMAIL_HOST_PASSWORD>` | SMTP password |
| `EMAIL_USE_TLS=<True or False>` | Use TLS for SMTP (`True` or `False`) |
| `ALLOWED_HOSTS=<ALLOWED_HOSTS>` | array of valid hostnames for the server `["test.com","test2.com"]` or `"*"` |
| `ALLOWED_HOSTS=<ALLOWED_HOSTS>` | array of valid hostnames for the server `["test.com","test2.com"]` (default: `["*"]`) |
| `SUPERUSER_EMAIL=<SUPERUSER_EMAIL>` | Superuser email |
| `SUPERUSER_PASSWORD=<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. |
| `SITE_LOGO_URL=<SITE_LOGO_URL>` | Custom site logo URL |
| `SECRET_KEY=<SECRET_KEY>` | A secret key used for cryptographic signing. docker-healthchecks will generate a secure value if one does not exist |
### Volume Mappings (`-v`)