Skip to content

Commit ab0e9f6

Browse files
Bot Updating Documentation
1 parent d459cf9 commit ab0e9f6

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

docs/images/docker-ferdium.md

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

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

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+
6567
### Options in all Selkies-based GUI containers
6668

6769
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.
@@ -206,8 +208,6 @@ services:
206208
ferdium:
207209
image: lscr.io/linuxserver/ferdium:latest
208210
container_name: ferdium
209-
security_opt:
210-
- seccomp:unconfined #optional
211211
environment:
212212
- PUID=1000
213213
- PGID=1000
@@ -226,7 +226,6 @@ services:
226226
```bash
227227
docker run -d \
228228
--name=ferdium \
229-
--security-opt seccomp=unconfined `#optional` \
230229
-e PUID=1000 \
231230
-e PGID=1000 \
232231
-e TZ=Etc/UTC \
@@ -268,7 +267,6 @@ Containers are configured using parameters passed at runtime (such as those abov
268267
| Parameter | Function |
269268
| :-----: | --- |
270269
| `--shm-size=` | Required for electron apps to fucntion properly. |
271-
| `--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. |
272270

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

@@ -499,13 +497,14 @@ To help with development, we generate this dependency graph.
499497
svc-xsettingsd -> legacy-services
500498
}
501499
Base Images: {
502-
"baseimage-selkies:debianbookworm" <- "baseimage-debian:bookworm"
500+
"baseimage-selkies:debiantrixie" <- "baseimage-debian:trixie"
503501
}
504502
"ferdium:latest" <- Base Images
505503
```
506504

507505
## Versions
508506

507+
* **22.09.25:** - Rebase to Debian Trixie.
509508
* **12.07.25:** - Rebase to Selkies, HTTPS IS NOW REQUIRED.
510509
* **10.02.24:** - Update Readme with new env vars and ingest proper PWA icon.
511510
* **07.12.23:** - Initial release.

0 commit comments

Comments
 (0)