We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb9396f commit 5a2fecaCopy full SHA for 5a2feca
docker-entrypoint.sh
@@ -26,12 +26,12 @@ if [ ! -f "$BOOKSTACK_HOME/.env" ]; then
26
DB_PASSWORD=${DB_PASSWORD:-password}
27
28
# Cache and session
29
- CACHE_DRIVER=file
30
- SESSION_DRIVER=file
+ CACHE_DRIVER=${BOOKSTACK_CACHEDRIVER:-file}
+ SESSION_DRIVER=${BOOKSTACK_SESSIONDRIVER:-file}
31
# If using Memcached, comment the above and uncomment these
32
#CACHE_DRIVER=memcached
33
#SESSION_DRIVER=memcached
34
- QUEUE_DRIVER=sync
+ QUEUE_DRIVER=${BOOKSTACK_SESSIONDRIVER:-sync}
35
36
# Memcached settings
37
# If using a UNIX socket path for the host, set the port to 0
0 commit comments