You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+11-11
Original file line number
Diff line number
Diff line change
@@ -146,11 +146,11 @@ docker run -d \
146
146
-e PUID=1000 \
147
147
-e PGID=1000 \
148
148
-e TZ=Etc/UTC \
149
-
-e APP_URL=<yourbaseurl> \
150
-
-e DB_HOST=<yourdbhost> \
151
-
-e DB_PORT=<yourdbport> \
152
-
-e DB_USER=<yourdbuser> \
153
-
-e DB_PASS=<yourdbpass> \
149
+
-e APP_URL=yourbaseurl \
150
+
-e DB_HOST=yourdbhost \
151
+
-e DB_PORT=yourdbport \
152
+
-e DB_USER=yourdbuser \
153
+
-e DB_PASS=yourdbpass \
154
154
-e DB_DATABASE=bookstackapp \
155
155
-e QUEUE_CONNECTION= `#optional` \
156
156
-p 6875:80 \
@@ -170,13 +170,13 @@ Container images are configured using parameters passed at runtime (such as thos
170
170
|`-e PUID=1000`| for UserID - see below for explanation |
171
171
|`-e PGID=1000`| for GroupID - see below for explanation |
172
172
|`-e TZ=Etc/UTC`| specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List). |
173
-
|`-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`|
174
-
|`-e DB_HOST=<yourdbhost>`| for specifying the database host |
175
-
|`-e DB_PORT=<yourdbport>`| for specifying the database port if not default 3306 |
176
-
|`-e DB_USER=<yourdbuser>`| for specifying the database user |
177
-
|`-e DB_PASS=<yourdbpass>`| for specifying the database password (minimum 4 characters & non-alphanumeric passwords must be properly escaped.) |
173
+
|`-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`|
174
+
|`-e DB_HOST=yourdbhost`| for specifying the database host |
175
+
|`-e DB_PORT=yourdbport`| for specifying the database port if not default 3306 |
176
+
|`-e DB_USER=yourdbuser`| for specifying the database user |
177
+
|`-e DB_PASS=yourdbpass`| for specifying the database password (minimum 4 characters & non-alphanumeric passwords must be properly escaped.) |
178
178
|`-e DB_DATABASE=bookstackapp`| for specifying the database to be used |
179
-
|`-e QUEUE_CONNECTION=`| Set to `database` to enable async actions like sending email or triggering webhooks. |
179
+
|`-e QUEUE_CONNECTION=`| 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). |
180
180
|`-v /config`| this will store any uploaded data on the docker host |
181
181
182
182
## Environment variables from files (Docker secrets)
0 commit comments