From 33b1113490ed2bd7a2d4fe04f371c64b03253ff5 Mon Sep 17 00:00:00 2001 From: technorabilia Date: Fri, 23 Dec 2022 00:53:26 +0000 Subject: [PATCH] Workflow update --- lsio/bookstack/docker-compose.yaml | 1 + lsio/bookstack/docker-run.sh | 5 +++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/lsio/bookstack/docker-compose.yaml b/lsio/bookstack/docker-compose.yaml index e09af0d..7c5794c 100644 --- a/lsio/bookstack/docker-compose.yaml +++ b/lsio/bookstack/docker-compose.yaml @@ -17,6 +17,7 @@ services: - PGID=1000 - APP_URL= - DB_HOST=bookstack_db + - DB_PORT=3306 - DB_USER=bookstack - DB_PASS= - DB_DATABASE=bookstackapp diff --git a/lsio/bookstack/docker-run.sh b/lsio/bookstack/docker-run.sh index e029213..6d321f6 100644 --- a/lsio/bookstack/docker-run.sh +++ b/lsio/bookstack/docker-run.sh @@ -13,9 +13,10 @@ docker run -d \ -e PGID=${PGID:-100} `# for GroupID` \ -e 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`` \ -e DB_HOST= `# for specifying the database host` \ + -e DB_PORT= `# for specifying the database port if not default 3306` \ -e DB_USER= `# for specifying the database user` \ - -e DB_PASS= `# for specifying the database password` \ - -e DB_DATABASE=bookstackapp `# for specifying the database to be used (non-alphanumeric passwords must be properly escaped.)` \ + -e DB_PASS= `# for specifying the database password (non-alphanumeric passwords must be properly escaped.)` \ + -e DB_DATABASE=bookstackapp `# for specifying the database to be used` \ -p 6875:80 `# will map the container's port 80 to port 6875 on the host` \ -v ${BASEDIR:-/volume1/docker}/bookstack/config:/config `# this will store any uploaded data on the docker host` \ --restart unless-stopped \