Skip to content

Commit d1a62e5

Browse files
Bot Updating Documentation
1 parent 30aae79 commit d1a62e5

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

docs/images/docker-dogwalk.md

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

6868
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.
6969

70+
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.
71+
7072
### Options in all Selkies-based GUI containers
7173

7274
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.
@@ -211,8 +213,6 @@ services:
211213
dogwalk:
212214
image: lscr.io/linuxserver/dogwalk:latest
213215
container_name: dogwalk
214-
security_opt:
215-
- seccomp:unconfined #optional
216216
environment:
217217
- PUID=1000
218218
- PGID=1000
@@ -231,7 +231,6 @@ services:
231231
```bash
232232
docker run -d \
233233
--name=dogwalk \
234-
--security-opt seccomp=unconfined `#optional` \
235234
-e PUID=1000 \
236235
-e PGID=1000 \
237236
-e TZ=Etc/UTC \
@@ -273,7 +272,6 @@ Containers are configured using parameters passed at runtime (such as those abov
273272
| Parameter | Function |
274273
| :-----: | --- |
275274
| `--shm-size=` | This is needed for DOGWALK to function properly. |
276-
| `--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. |
277275

278276
## Environment variables from files (Docker secrets)
279277

0 commit comments

Comments
 (0)