From d62459ff0614868b6c7f618e232ffc14471ce6e0 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 14 Oct 2024 15:22:57 +0000 Subject: [PATCH] Bot Updating Documentation --- docs/images/docker-bookstack.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/images/docker-bookstack.md b/docs/images/docker-bookstack.md index 9df6d8e4b..b1defb63d 100644 --- a/docs/images/docker-bookstack.md +++ b/docs/images/docker-bookstack.md @@ -93,6 +93,7 @@ services: - PGID=1000 - TZ=Etc/UTC - APP_URL= + - APP_KEY= - DB_HOST= - DB_PORT=3306 - DB_USERNAME= @@ -115,6 +116,7 @@ docker run -d \ -e PGID=1000 \ -e TZ=Etc/UTC \ -e APP_URL= \ + -e APP_KEY= \ -e DB_HOST= \ -e DB_PORT=3306 \ -e DB_USERNAME= \ @@ -145,6 +147,7 @@ Containers are configured using parameters passed at runtime (such as those abov | `PGID=1000` | for GroupID - see below for explanation | | `TZ=Etc/UTC` | specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List). | | `APP_URL=` | The IP:port or URL your application will be accessed on (ie. `http://192.168.1.1:6875` or `https://bookstack.mydomain.com` | +| `APP_KEY=` | Session encryption key. Can be generated with `docker run -it --rm --entrypoint /bin/bash lscr.io/linuxserver/bookstack:latest appkey` | | `DB_HOST=` | The database instance hostname | | `DB_PORT=3306` | Database port (default `3306`) | | `DB_USERNAME=` | Database user |