Bot Updating Documentation

This commit is contained in:
LinuxServer-CI 2026-02-13 13:11:07 +00:00
parent e695d760e9
commit faeb154f41
No known key found for this signature in database

View File

@ -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.