Bot Updating Documentation

pull/44/head
LinuxServer-CI 2021-08-07 20:15:14 +02:00
rodzic 5cdcdb2fcf
commit 86a1b297e3
1 zmienionych plików z 6 dodań i 2 usunięć

Wyświetl plik

@ -62,7 +62,8 @@ services:
- ALLOWED_HOSTS=<ALLOWED_HOSTS> - ALLOWED_HOSTS=<ALLOWED_HOSTS>
- SUPERUSER_EMAIL=<SUPERUSER_EMAIL> - SUPERUSER_EMAIL=<SUPERUSER_EMAIL>
- SUPERUSER_PASSWORD=<SUPERUSER_PASSWORD> - SUPERUSER_PASSWORD=<SUPERUSER_PASSWORD>
- REGENERATE_SETTINGS=True/False - REGENERATE_SETTINGS=True/False #optional
- SITE_LOGO_URL=<SITE_LOGO_URL> #optional
volumes: volumes:
- <path to data on host>:/config - <path to data on host>:/config
ports: ports:
@ -88,7 +89,8 @@ docker run -d \
-e ALLOWED_HOSTS=<ALLOWED_HOSTS> \ -e ALLOWED_HOSTS=<ALLOWED_HOSTS> \
-e SUPERUSER_EMAIL=<SUPERUSER_EMAIL> \ -e SUPERUSER_EMAIL=<SUPERUSER_EMAIL> \
-e SUPERUSER_PASSWORD=<SUPERUSER_PASSWORD> \ -e SUPERUSER_PASSWORD=<SUPERUSER_PASSWORD> \
-e REGENERATE_SETTINGS=True/False \ -e REGENERATE_SETTINGS=True/False `#optional` \
-e SITE_LOGO_URL=<SITE_LOGO_URL> `#optional` \
-p 8000:8000 \ -p 8000:8000 \
-v <path to data on host>:/config \ -v <path to data on host>:/config \
--restart unless-stopped \ --restart unless-stopped \
@ -123,6 +125,7 @@ Docker images are configured using parameters passed at runtime (such as those a
| `SUPERUSER_EMAIL=<SUPERUSER_EMAIL>` | Superuser email | | `SUPERUSER_EMAIL=<SUPERUSER_EMAIL>` | Superuser email |
| `SUPERUSER_PASSWORD=<SUPERUSER_PASSWORD>` | Superuser password | | `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. | | `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 |
### Volume Mappings (`-v`) ### Volume Mappings (`-v`)
@ -179,6 +182,7 @@ We publish various [Docker Mods](https://github.com/linuxserver/docker-mods) to
## Versions ## Versions
* **07.08.21:** - Update custom logo handling to support changes in v1.22.0
* **11.07.21:** - Rebase to Alpine 3.14. * **11.07.21:** - Rebase to Alpine 3.14.
* **18.05.21:** - Add linuxserver wheel index. * **18.05.21:** - Add linuxserver wheel index.
* **11.01.21:** - Add libffi-dev to allow building of python cryptography lib. * **11.01.21:** - Add libffi-dev to allow building of python cryptography lib.