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
+4-8Lines changed: 4 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -63,7 +63,6 @@ docker create \
63
63
-e DB_PASS=<yourdbpass> \
64
64
-e DB_DATABASE=bookstackapp \
65
65
-e APPURL=your.site.here.xyz \
66
-
-e ADVANCED_MODE=1 \
67
66
-p 6875:80 \
68
67
-v <path to data>:/config \
69
68
linuxserver/bookstack
@@ -89,7 +88,6 @@ services:
89
88
- DB_PASS=<yourdbpass>
90
89
- DB_DATABASE=bookstackapp
91
90
- APPURL=your.site.here.xyz
92
-
- ADVANCED_MODE=1
93
91
volumes:
94
92
- <path to data>:/config
95
93
ports:
@@ -112,7 +110,6 @@ Container images are configured using parameters passed at runtime (such as thos
112
110
|`-e DB_PASS=<yourdbpass>`| for specifying the database password |
113
111
|`-e DB_DATABASE=bookstackapp`| for specifying the database to be used |
114
112
|`-e APPURL=your.site.here.xyz`| for specifying the url your application will be accessed on |
115
-
|`-e ADVANCED_MODE=1`| enables advanced mode for direct editing of the .env - scroll down for details on this |
116
113
|`-v /config`| this will store any uploaded data on the docker host |
117
114
118
115
## User / Group Identifiers
@@ -155,12 +152,10 @@ If you intend to use this application behind a reverse proxy, such as our LetsEn
155
152
156
153
Documentation can be found at https://www.bookstackapp.com/docs/
157
154
158
-
### Advanced Mode
159
-
We have implemented a special 'advanced mode' where users who wish to leverage the built in SMTP or LDAP functionality, will have the ability to edit the .env by hand. With `ADVANCED_MODE=1` set when
160
-
the container is created, it will copy the .env.example to /config within the container. You can then edit this file on the host system (make sure you read the BookStack docs) and restart the
161
-
container when finished. When the container starts, it copies /config/.env to /var/www/html/.env within the container for the web app to use. It will do this every time the container restarts.
155
+
### Advanced Users
156
+
If you wish to use the extra functionality of BookStack such as email, memcache, ldap and so on you will need to make your own .env file with guidance from the BookStack documentation.
162
157
163
-
Note, the APP_KEY is still set by PHP environment so you do not need to worrry about this.
158
+
When you create the container, do not set any arguements for SQL or APPURL. The container will copy an .env file to /config/www/.env on your host system for you to edit.
164
159
165
160
### Composer
166
161
@@ -179,6 +174,7 @@ Some simple docker-compose files are included for you to get started with. You w
179
174
180
175
## Versions
181
176
177
+
***15.10.18:** - Changed functionality for advanced users
182
178
***08.10.18:** - Advanced mode, symlink changes, sed fixing, docs updated, added some composer files
0 commit comments