From 7f185e9d83e9b334cb4222781f55d7bfbb1618f7 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 22 Dec 2022 16:35:10 -0600 Subject: [PATCH] Bot Updating Documentation --- images/docker-bookstack.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/images/docker-bookstack.md b/images/docker-bookstack.md index 3a41c7b81..9b0321356 100644 --- a/images/docker-bookstack.md +++ b/images/docker-bookstack.md @@ -76,6 +76,7 @@ services: - PGID=1000 - APP_URL= - DB_HOST=bookstack_db + - DB_PORT=3306 - DB_USER=bookstack - DB_PASS= - DB_DATABASE=bookstackapp @@ -112,6 +113,7 @@ docker run -d \ -e PGID=1000 \ -e APP_URL= \ -e DB_HOST= \ + -e DB_PORT= \ -e DB_USER= \ -e DB_PASS= \ -e DB_DATABASE=bookstackapp \ @@ -139,9 +141,10 @@ Docker images are configured using parameters passed at runtime (such as those a | `PGID=1000` | for GroupID - see below for explanation | | `APP_URL=` | for specifying the IP:port or URL your application will be accessed on (ie. `http://192.168.1.1:6875` or `https://bookstack.mydomain.com` | | `DB_HOST=` | for specifying the database host | +| `DB_PORT=` | for specifying the database port if not default 3306 | | `DB_USER=` | for specifying the database user | -| `DB_PASS=` | for specifying the database password | -| `DB_DATABASE=bookstackapp` | for specifying the database to be used (non-alphanumeric passwords must be properly escaped.) | +| `DB_PASS=` | for specifying the database password (non-alphanumeric passwords must be properly escaped.) | +| `DB_DATABASE=bookstackapp` | for specifying the database to be used | ### Volume Mappings (`-v`)