From 714d89838509fd58336330cd826c4521cf532b2a Mon Sep 17 00:00:00 2001 From: technorabilia Date: Tue, 5 Sep 2023 01:14:06 +0000 Subject: [PATCH] Workflow update --- lsio/bookstack/docker-run.sh | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/lsio/bookstack/docker-run.sh b/lsio/bookstack/docker-run.sh index 9ecaeb8..cc59cf0 100644 --- a/lsio/bookstack/docker-run.sh +++ b/lsio/bookstack/docker-run.sh @@ -12,12 +12,13 @@ docker run -d \ -e PUID=${PUID:-1024} `# for UserID` \ -e PGID=${PGID:-100} `# for GroupID` \ -e TZ=${TZ:-Europe/Amsterdam} `# specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List).` \ - -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 (minimum 4 characters & non-alphanumeric passwords must be properly escaped.)` \ + -e APP_URL=yourbaseurl `# 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=yourdbhost `# for specifying the database host` \ + -e DB_PORT=yourdbport `# for specifying the database port if not default 3306` \ + -e DB_USER=yourdbuser `# for specifying the database user` \ + -e DB_PASS=yourdbpass `# for specifying the database password (minimum 4 characters & non-alphanumeric passwords must be properly escaped.)` \ -e DB_DATABASE=bookstackapp `# for specifying the database to be used` \ + -e QUEUE_CONNECTION= `# optional` `# Set to `database` to enable async actions like sending email or triggering webhooks. See [documentation](https://www.bookstackapp.com/docs/admin/email-webhooks/#async-action-handling).` \ -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 \