Merge pull request #1150 from nextcloud/enh/1149/collabora-seccomp

allow to disable seccomp for collabora
This commit is contained in:
Simon L 2022-09-20 20:03:18 +02:00 committed by GitHub
commit dff437fe26
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 24 additions and 1 deletions

View file

@ -501,3 +501,6 @@ You can make the Nextcloud container trust any Certification Authority by provid
When using `docker run`, the environmental variable can be set with `-e TRUSTED_CACERTS_DIR=/path/to/my/cacerts`.
In order for the value to be valid, the path should start with `/` and not end with '/' and point to an existing **directory**. Pointing the variable directly to a certificate **file** will not work and may also break things.
### How to disable Collabora's Seccomp feature?
The Collabora container enables Seccomp by default, which is a security feature of the Linux kernel. On systems without this kernel feature enabled, you need to provide `-e COLLABORA_SECCOMP_DISABLED=true` to the initial docker run command in order to make it work.