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-5Lines changed: 2 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -58,7 +58,6 @@ The architectures supported by this image are:
58
58
59
59
The application can be accessed at:
60
60
61
-
*http://yourhost:3000/
62
61
*https://yourhost:3001/
63
62
64
63
### Strict reverse proxies
@@ -79,6 +78,8 @@ By default, this container has no authentication. The optional `CUSTOM_USER` and
79
78
80
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.
81
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
+
82
83
### Options in all Selkies-based GUI containers
83
84
84
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.
@@ -221,8 +222,6 @@ services:
221
222
wps-office:
222
223
image: lscr.io/linuxserver/wps-office:latest
223
224
container_name: wps-office
224
-
security_opt:
225
-
- seccomp:unconfined #optional
226
225
environment:
227
226
- PUID=1000
228
227
- PGID=1000
@@ -241,7 +240,6 @@ services:
241
240
```bash
242
241
docker run -d \
243
242
--name=wps-office \
244
-
--security-opt seccomp=unconfined `#optional` \
245
243
-e PUID=1000 \
246
244
-e PGID=1000 \
247
245
-e TZ=Etc/UTC \
@@ -266,7 +264,6 @@ Containers are configured using parameters passed at runtime (such as those abov
266
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). |
267
265
|`-v /config`| Users home directory in the container, stores program settings and documents |
268
266
|`--shm-size=`| This is needed for electron applications to function properly. |
269
-
|`--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. |
270
267
271
268
## Environment variables from files (Docker secrets)
- {name: "shm-size", name_compose: "shm_size", value: "1gb", desc: "This is needed for electron applications 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