File tree Expand file tree Collapse file tree 3 files changed +10
-1
lines changed Expand file tree Collapse file tree 3 files changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -10,9 +10,12 @@ services:
10
10
- ./:/cfg:z
11
11
- /path/to/your/fileshare/top/folder:/w:z
12
12
13
- # enabling mimalloc by replacing "NOPE" with "2" will make some stuff twice as fast, but everything will use twice as much ram:
14
13
environment :
15
14
LD_PRELOAD : /usr/lib/libmimalloc-secure.so.NOPE
15
+ # enable mimalloc by replacing "NOPE" with "2" for a nice speed-boost (will use twice as much ram)
16
+
17
+ PYTHONUNBUFFERED : 1
18
+ # ensures log-messages are not delayed (but can reduce speed a tiny bit)
16
19
17
20
stop_grace_period : 15s # thumbnailer is allowed to continue finishing up for 10s after the shutdown signal
18
21
healthcheck :
Original file line number Diff line number Diff line change @@ -27,6 +27,9 @@ services:
27
27
LD_PRELOAD : /usr/lib/libmimalloc-secure.so.NOPE
28
28
# enable mimalloc by replacing "NOPE" with "2" for a nice speed-boost (will use twice as much ram)
29
29
30
+ PYTHONUNBUFFERED : 1
31
+ # ensures log-messages are not delayed (but can reduce speed a tiny bit)
32
+
30
33
authelia :
31
34
image : authelia/authelia:v4.38.0-beta3 # the config files in the authelia folder use the new syntax
32
35
container_name : idp_authelia
Original file line number Diff line number Diff line change @@ -27,6 +27,9 @@ services:
27
27
LD_PRELOAD : /usr/lib/libmimalloc-secure.so.NOPE
28
28
# enable mimalloc by replacing "NOPE" with "2" for a nice speed-boost (will use twice as much ram)
29
29
30
+ PYTHONUNBUFFERED : 1
31
+ # ensures log-messages are not delayed (but can reduce speed a tiny bit)
32
+
30
33
traefik :
31
34
image : traefik:v2.11
32
35
container_name : traefik
You can’t perform that action at this time.
0 commit comments