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: README.md
+2-4Lines changed: 2 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -78,6 +78,8 @@ By default, this container has no authentication. The optional `CUSTOM_USER` and
78
78
79
79
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.
80
80
81
+
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.
82
+
81
83
### Options in all Selkies-based GUI containers
82
84
83
85
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.
@@ -220,8 +222,6 @@ services:
220
222
onlyoffice:
221
223
image: lscr.io/linuxserver/onlyoffice:latest
222
224
container_name: onlyoffice
223
-
security_opt:
224
-
- seccomp:unconfined #optional
225
225
environment:
226
226
- PUID=1000
227
227
- PGID=1000
@@ -240,7 +240,6 @@ services:
240
240
```bash
241
241
docker run -d \
242
242
--name=onlyoffice \
243
-
--security-opt seccomp=unconfined `#optional` \
244
243
-e PUID=1000 \
245
244
-e PGID=1000 \
246
245
-e TZ=Etc/UTC \
@@ -265,7 +264,6 @@ Containers are configured using parameters passed at runtime (such as those abov
265
264
|`-e TZ=Etc/UTC`| specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List). |
266
265
|`-v /config`| Users home directory in the container, stores program settings and documents |
267
266
|`--shm-size=`| This is needed for ONLYOFFICE to function properly. |
268
-
|`--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. |
269
267
270
268
## Environment variables from files (Docker secrets)
- {name: "shm-size", name_compose: "shm_size", value: "1gb", desc: "This is needed for ONLYOFFICE to function properly."}
29
-
opt_security_opt_param: true
30
-
opt_security_opt_param_vars:
31
-
- {run_var: "seccomp=unconfined", compose_var: "seccomp:unconfined", desc: "For Docker Engine only, many modern gui apps need this to function on older hosts as syscalls are unknown to Docker."}
0 commit comments