Skip to content

Commit 1f5fff6

Browse files
Bot Updating Documentation
1 parent 56f798e commit 1f5fff6

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

docs/images/docker-retroarch.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,8 @@ By default, this container has no authentication. The optional `CUSTOM_USER` and
6363

6464
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.
6565

66+
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.
67+
6668
### Options in all Selkies-based GUI containers
6769

6870
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.
@@ -207,8 +209,6 @@ services:
207209
retroarch:
208210
image: lscr.io/linuxserver/retroarch:latest
209211
container_name: retroarch
210-
security_opt:
211-
- seccomp:unconfined #optional
212212
environment:
213213
- PUID=1000
214214
- PGID=1000
@@ -227,7 +227,6 @@ services:
227227
```bash
228228
docker run -d \
229229
--name=retroarch \
230-
--security-opt seccomp=unconfined `#optional` \
231230
-e PUID=1000 \
232231
-e PGID=1000 \
233232
-e TZ=Etc/UTC \
@@ -269,7 +268,6 @@ Containers are configured using parameters passed at runtime (such as those abov
269268
| Parameter | Function |
270269
| :-----: | --- |
271270
| `--shm-size=` | This is needed for retroarch to function. |
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. |
273271

274272
## Environment variables from files (Docker secrets)
275273

0 commit comments

Comments
 (0)