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: docs/images/docker-joplin.md
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -215,6 +215,7 @@ services:
215
215
ports:
216
216
- 3000:3000
217
217
- 3001:3001
218
+
shm_size: "1gb"
218
219
restart: unless-stopped
219
220
```
220
221
@@ -230,6 +231,7 @@ docker run -d \
230
231
-p 3000:3000 \
231
232
-p 3001:3001 \
232
233
-v /path/to/config:/config \
234
+
--shm-size="1gb" \
233
235
--restart unless-stopped \
234
236
lscr.io/linuxserver/joplin:latest
235
237
```
@@ -263,6 +265,7 @@ Containers are configured using parameters passed at runtime (such as those abov
263
265
264
266
| Parameter | Function |
265
267
| :-----: | --- |
268
+
|`--shm-size=`| This is needed for electron applications to function properly. |
266
269
|`--security-opt seccomp=unconfined`| For Docker Engine only, many modern gui apps need this to function on older hosts as syscalls are unknown to Docker. |
267
270
268
271
## Environment variables from files (Docker secrets)
0 commit comments