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
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -158,7 +158,7 @@ Container images are configured using parameters passed at runtime (such as thos
158
158
|`-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`|
159
159
|`-e DB_HOST=<yourdbhost>`| for specifying the database host |
160
160
|`-e DB_USER=<yourdbuser>`| for specifying the database user |
161
-
|`-e DB_PASS=<yourdbpass>`| for specifying the database password |
161
+
|`-e DB_PASS=<yourdbpass>`| for specifying the database password (non-alphanumeric passwords must be properly escaped.) |
162
162
|`-e DB_DATABASE=bookstackapp`| for specifying the database to be used |
163
163
|`-v /config`| this will store any uploaded data on the docker host |
164
164
@@ -271,6 +271,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64
271
271
272
272
## Versions
273
273
274
+
***10.10.22:** - Remove password escape logic which caused problems for a small subset of users.
274
275
***20.08.22:** - Rebasing to alpine 3.15 with php8. Restructure nginx configs ([see changes announcement](https://info.linuxserver.io/issues/2022-08-20-nginx-base)).
- { env_var: "DB_DATABASE", env_value: "bookstackapp", desc: "for specifying the database to be used" }
32
+
- { env_var: "DB_DATABASE", env_value: "bookstackapp", desc: "for specifying the database to be used (non-alphanumeric passwords must be properly escaped.)" }
33
33
34
34
param_usage_include_ports: true
35
35
param_ports:
@@ -101,6 +101,7 @@ app_setup_block: |
101
101
102
102
# changelog
103
103
changelogs:
104
+
- { date: "10.10.22:", desc: "Remove password escape logic which caused problems for a small subset of users." }
104
105
- { date: "20.08.22:", desc: "Rebasing to alpine 3.15 with php8. Restructure nginx configs ([see changes announcement](https://info.linuxserver.io/issues/2022-08-20-nginx-base))." }
0 commit comments