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-doublecommander.md
+7-1Lines changed: 7 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -62,6 +62,8 @@ By default, this container has no authentication. The optional `CUSTOM_USER` and
62
62
63
63
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.
64
64
65
+
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.
66
+
65
67
### Options in all Selkies-based GUI containers
66
68
67
69
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.
@@ -216,6 +218,7 @@ services:
216
218
ports:
217
219
- 3000:3000
218
220
- 3001:3001
221
+
shm_size: "1gb"
219
222
restart: unless-stopped
220
223
```
221
224
@@ -231,6 +234,7 @@ docker run -d \
231
234
-p 3001:3001 \
232
235
-v /path/to/config:/config \
233
236
-v /path/to/data:/data \
237
+
--shm-size="1gb" \
234
238
--restart unless-stopped \
235
239
lscr.io/linuxserver/doublecommander:latest
236
240
```
@@ -265,6 +269,7 @@ Containers are configured using parameters passed at runtime (such as those abov
265
269
266
270
| Parameter | Function |
267
271
| :-----: | --- |
272
+
|`--shm-size=`| Recommended for all desktop images. |
268
273
269
274
## Environment variables from files (Docker secrets)
270
275
@@ -495,13 +500,14 @@ To help with development, we generate this dependency graph.
0 commit comments