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
+6Lines changed: 6 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -78,6 +78,8 @@ By default, this container has no authentication. The optional `CUSTOM_USER` and
78
78
79
79
The web interface includes a terminal with passwordless `sudo` access. Any user with access to the GUI can gain root control within the container, install arbitrary software, and probe your local network.
80
80
81
+
While not generally recommended, certain legacy environments specifically those with older hardware or outdated Linux distributions may require the deactivation of the standard seccomp profile to get containerized desktop software to run. This can be achieved by utilizing the `--security-opt seccomp=unconfined` parameter. It is critical to use this option only when absolutely necessary as it disables a key security layer of Docker, elevating the potential for container escape vulnerabilities.
82
+
81
83
### Options in all Selkies-based GUI containers
82
84
83
85
This container is based on [Docker Baseimage Selkies](https://github.com/linuxserver/docker-baseimage-selkies), which provides the following environment variables and run configurations to customize its functionality.
@@ -230,6 +232,7 @@ services:
230
232
ports:
231
233
- 3000:3000
232
234
- 3001:3001
235
+
shm_size: "1gb"
233
236
restart: unless-stopped
234
237
```
235
238
@@ -245,6 +248,7 @@ docker run -d \
245
248
-p 3001:3001 \
246
249
-v /path/to/config:/config \
247
250
-v /path/to/data:/data \
251
+
--shm-size="1gb" \
248
252
--restart unless-stopped \
249
253
lscr.io/linuxserver/doublecommander:latest
250
254
```
@@ -262,6 +266,7 @@ Containers are configured using parameters passed at runtime (such as those abov
262
266
|`-e TZ=Etc/UTC`| specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List). |
263
267
|`-v /config`| Users home directory in the container, stores program settings. |
264
268
|`-v /data`| Host data directories, mount as many as needed. |
269
+
|`--shm-size=`| Recommended for all desktop images. |
265
270
266
271
## Environment variables from files (Docker secrets)
267
272
@@ -425,6 +430,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64
425
430
426
431
## Versions
427
432
433
+
***22.09.25:** - Rebase to Debian Trixie.
428
434
***28.07.25:** - Fix CPU usage bug by disabling fake udev.
429
435
***12.07.25:** - Rebase to Selkies, HTTPS IS NOW REQUIRED.
430
436
***05.07.24:** - Add rar, 7zip, ace, and arj archive support.
0 commit comments