This commit is contained in:
Simon L. 2026-01-15 13:07:40 +01:00
parent 80634361bb
commit bd56b43da5

View file

@ -379,22 +379,22 @@ readonly class DockerActionManager {
// Disable seccomp policy if seccomp is enabled in the kernel to fix issues like https://github.com/nextcloud/all-in-one/issues/7308 // Disable seccomp policy if seccomp is enabled in the kernel to fix issues like https://github.com/nextcloud/all-in-one/issues/7308
if (!$this->configurationManager->isSeccompDisabled()) { if (!$this->configurationManager->isSeccompDisabled()) {
$seccompProfile = '{ $seccompProfile = '{
\"defaultAction\": \"SCMP_ACT_ERRNO\", "defaultAction": "SCMP_ACT_ERRNO",
\"defaultErrnoRet\": 38, "defaultErrnoRet": 38,
\"architectures\": [ "architectures": [
\"SCMP_ARCH_X86_64\", "SCMP_ARCH_X86_64",
\"SCMP_ARCH_X86\", "SCMP_ARCH_X86",
\"SCMP_ARCH_X32\", "SCMP_ARCH_X32",
\"SCMP_ARCH_AARCH64\", "SCMP_ARCH_AARCH64",
\"SCMP_ARCH_ARM\" "SCMP_ARCH_ARM"
], ],
\"syscalls\": [ "syscalls": [
{ {
\"names\": [ "names": [
\"fchmodat2\" "fchmodat2"
], ],
\"action\": \"SCMP_ACT_ERRNO\", "action": "SCMP_ACT_ERRNO",
\"errnoRet\": 38 "errnoRet": 38
} }
] ]
}'; }';