From 32e99e79cfc3fb4f9d6ff0ee456b38e0cf09e594 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 4 Apr 2022 23:32:57 +0200 Subject: [PATCH] Bot Updating Documentation --- images/docker-babybuddy.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/images/docker-babybuddy.md b/images/docker-babybuddy.md index a99aa3b1a..34f3379ca 100755 --- a/images/docker-babybuddy.md +++ b/images/docker-babybuddy.md @@ -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.