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
+1-8Lines changed: 1 addition & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -220,8 +220,6 @@ services:
220
220
obsidian:
221
221
image: lscr.io/linuxserver/obsidian:latest
222
222
container_name: obsidian
223
-
security_opt:
224
-
- seccomp:unconfined #optional
225
223
environment:
226
224
- PUID=1000
227
225
- PGID=1000
@@ -231,8 +229,6 @@ services:
231
229
ports:
232
230
- 3000:3000
233
231
- 3001:3001
234
-
devices:
235
-
- /dev/dri:/dev/dri #optional
236
232
shm_size: "1gb"
237
233
restart: unless-stopped
238
234
```
@@ -242,14 +238,12 @@ services:
242
238
```bash
243
239
docker run -d \
244
240
--name=obsidian \
245
-
--security-opt seccomp=unconfined `#optional` \
246
241
-e PUID=1000 \
247
242
-e PGID=1000 \
248
243
-e TZ=Etc/UTC \
249
244
-p 3000:3000 \
250
245
-p 3001:3001 \
251
246
-v /path/to/config:/config \
252
-
--device /dev/dri:/dev/dri `#optional` \
253
247
--shm-size="1gb" \
254
248
--restart unless-stopped \
255
249
lscr.io/linuxserver/obsidian:latest
@@ -267,9 +261,7 @@ Containers are configured using parameters passed at runtime (such as those abov
267
261
|`-e PGID=1000`| for GroupID - see below for explanation |
268
262
|`-e TZ=Etc/UTC`| specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List). |
269
263
|`-v /config`| Users home directory in the container, stores program settings and files. |
270
-
|`--device /dev/dri`| Add this for GL support (Linux hosts only) |
271
264
|`--shm-size=`| This is needed for electron applications to function properly. |
272
-
|`--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. |
273
265
274
266
## Environment variables from files (Docker secrets)
275
267
@@ -433,6 +425,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64
433
425
434
426
## Versions
435
427
428
+
***21.09.25:** - Rebase to Debian Trixie.
436
429
***12.07.25:** - Rebase to Selkies add no sandbox to launcher, HTTPS IS NOW REQUIRED.
437
430
***03.04.25:** - Update chromium launch options to improve performance.
- {name: "shm-size", name_compose: "shm_size", value: "1gb", desc: "This is needed for electron applications to function properly."}
32
-
opt_security_opt_param: true
33
-
opt_security_opt_param_vars:
34
-
- {run_var: "seccomp=unconfined", compose_var: "seccomp:unconfined", desc: "For Docker Engine only, many modern gui apps need this to function on older hosts as syscalls are unknown to Docker."}
35
-
opt_param_device_map: true
36
-
opt_param_devices:
37
-
- {device_path: "/dev/dri", device_host_path: "/dev/dri", desc: "Add this for GL support (Linux hosts only)"}
38
29
# Selkies blurb settings
39
30
selkies_blurb: true
40
31
show_nvidia: true
@@ -116,6 +107,7 @@ init_diagram: |
116
107
"obsidian:latest" <- Base Images
117
108
# changelog
118
109
changelogs:
110
+
- {date: "21.09.25:", desc: "Rebase to Debian Trixie."}
119
111
- {date: "12.07.25:", desc: "Rebase to Selkies add no sandbox to launcher, HTTPS IS NOW REQUIRED."}
0 commit comments