Skip to content

Commit 8ccca1d

Browse files
Bot Updating Documentation
1 parent 6eda903 commit 8ccca1d

1 file changed

Lines changed: 4 additions & 5 deletions

File tree

docs/images/docker-msedge.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
msedge:
207209
image: lscr.io/linuxserver/msedge:latest
208210
container_name: msedge
209-
security_opt:
210-
- seccomp:unconfined #optional
211211
environment:
212212
- PUID=1000
213213
- PGID=1000
@@ -227,7 +227,6 @@ services:
227227
```bash
228228
docker run -d \
229229
--name=msedge \
230-
--security-opt seccomp=unconfined `#optional` \
231230
-e PUID=1000 \
232231
-e PGID=1000 \
233232
-e TZ=Etc/UTC \
@@ -271,7 +270,6 @@ Containers are configured using parameters passed at runtime (such as those abov
271270
| Parameter | Function |
272271
| :-----: | --- |
273272
| `--shm-size=` | This is required for Edge to launch and function. |
274-
| `--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. Edge runs in no-sandbox mode without it. |
275273

276274
## Environment variables from files (Docker secrets)
277275

@@ -502,13 +500,14 @@ To help with development, we generate this dependency graph.
502500
svc-xsettingsd -> legacy-services
503501
}
504502
Base Images: {
505-
"baseimage-selkies:debianbookworm" <- "baseimage-debian:bookworm"
503+
"baseimage-selkies:debiantrixie" <- "baseimage-debian:trixie"
506504
}
507505
"msedge:latest" <- Base Images
508506
```
509507

510508
## Versions
511509

510+
* **22.09.25:** - Rebase to Debian Trixie.
512511
* **12.07.25:** - Rebase to Selkies, HTTPS IS NOW REQUIRED.
513512
* **04.02.25:** - Clean up Singletons if container is shut down while windows are open.
514513
* **25.04.24:** - Initial release.

0 commit comments

Comments
 (0)