From faeb154f41b5a79b22a9f70aeaa17ebdbd1fec08 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 13 Feb 2026 13:11:07 +0000 Subject: [PATCH] Bot Updating Documentation --- docs/images/docker-planka.md | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/docs/images/docker-planka.md b/docs/images/docker-planka.md index 99bf69984a..312994170e 100644 --- a/docs/images/docker-planka.md +++ b/docs/images/docker-planka.md @@ -88,7 +88,8 @@ services: - DEFAULT_ADMIN_PASSWORD=demo - "DEFAULT_ADMIN_NAME=Demo User" - SECRET_KEY=notasecretkey - - TRUST_PROXY=0 + - TRUST_PROXY=false + - DEFAULT_LANGUAGE=en-US #optional volumes: - /path/to/planka/data:/config ports: @@ -111,7 +112,8 @@ docker run -d \ -e DEFAULT_ADMIN_PASSWORD=demo \ -e DEFAULT_ADMIN_NAME="Demo User" \ -e SECRET_KEY=notasecretkey \ - -e TRUST_PROXY=0 \ + -e TRUST_PROXY=false \ + -e DEFAULT_LANGUAGE=en-US `#optional` \ -p 1337:1337 \ -v /path/to/planka/data:/config \ --restart unless-stopped \ @@ -142,7 +144,8 @@ Containers are configured using parameters passed at runtime (such as those abov | `DEFAULT_ADMIN_PASSWORD=demo` | Password for default user. | | `DEFAULT_ADMIN_NAME=Demo User` | Display name for default user. | | `SECRET_KEY=notasecretkey` | Session encryption key, recommended 32-64 character alphanumeric. | -| `TRUST_PROXY=0` | Set to `1` to trust upstream proxies if reverse proxying. | +| `TRUST_PROXY=false` | Set to `true` to trust upstream proxies if reverse proxying. | +| `DEFAULT_LANGUAGE=en-US` | This sets the default language for sending notifications per user (if a user hasn't selected a language) and per board. | ### Volume Mappings (`-v`) @@ -359,13 +362,14 @@ To help with development, we generate this dependency graph. svc-planka -> legacy-services } Base Images: { - "baseimage-alpine:3.21" + "baseimage-alpine:3.23" } "planka:latest" <- Base Images ``` ## Versions +* **13.02.26:** - Rebase to Alpine 3.23. Updates for v2. Users should update `TRUST_PROXY` to use `true`/`false` instead of `1`/`0`. * **12.01.25:** - Rebase to Alpine 3.21. * **18.09.24:** - Update default user docs. * **12.09.24:** - Initial Release.