Bot Updating Documentation

pull/53/head
LinuxServer-CI 2022-04-04 23:32:57 +02:00
rodzic 025b6c1ba9
commit 32e99e79cf
1 zmienionych plików z 4 dodań i 0 usunięć

Wyświetl plik

@ -54,6 +54,7 @@ services:
container_name: babybuddy
environment:
- TZ=Europe/London
- CSRF_TRUSTED_ORIGINS=http://127.0.0.1:8000,https://babybuddy.domain.com
volumes:
- /path/to/appdata:/config
ports:
@ -67,6 +68,7 @@ services:
docker run -d \
--name=babybuddy \
-e TZ=Europe/London \
-e CSRF_TRUSTED_ORIGINS=http://127.0.0.1:8000,https://babybuddy.domain.com \
-p 8000:8000 \
-v /path/to/appdata:/config \
--restart unless-stopped \
@ -88,6 +90,7 @@ Docker images are configured using parameters passed at runtime (such as those a
| Env | Function |
| :----: | --- |
| `TZ=Europe/London` | Specify a timezone to use EG Europe/London |
| `CSRF_TRUSTED_ORIGINS=http://127.0.0.1:8000,https://babybuddy.domain.com` | Add any address you'd like to access babybuddy at (comma separated, no spaces) |
### Volume Mappings (`-v`)
@ -136,6 +139,7 @@ We publish various [Docker Mods](https://github.com/linuxserver/docker-mods) to
## Versions
* **03.04.22:** - Rebase to alpine-nginx baseimage. Add `CSRF_TRUSTED_ORIGINS` env var.
* **11.12.21:** - Add py3-mysqlclient for mysql/mariadb.
* **14.11.21:** - Add lxml dependencies (temp fix for amd64 by force compiling lxml).
* **25.07.21:** - Add libpq for postgresql.