mirror of
https://github.com/nextcloud/all-in-one.git
synced 2026-02-04 04:56:52 +00:00
WIP
This commit is contained in:
parent
80634361bb
commit
bd56b43da5
1 changed files with 13 additions and 13 deletions
|
|
@ -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
|
||||
if (!$this->configurationManager->isSeccompDisabled()) {
|
||||
$seccompProfile = '{
|
||||
\"defaultAction\": \"SCMP_ACT_ERRNO\",
|
||||
\"defaultErrnoRet\": 38,
|
||||
\"architectures\": [
|
||||
\"SCMP_ARCH_X86_64\",
|
||||
\"SCMP_ARCH_X86\",
|
||||
\"SCMP_ARCH_X32\",
|
||||
\"SCMP_ARCH_AARCH64\",
|
||||
\"SCMP_ARCH_ARM\"
|
||||
"defaultAction": "SCMP_ACT_ERRNO",
|
||||
"defaultErrnoRet": 38,
|
||||
"architectures": [
|
||||
"SCMP_ARCH_X86_64",
|
||||
"SCMP_ARCH_X86",
|
||||
"SCMP_ARCH_X32",
|
||||
"SCMP_ARCH_AARCH64",
|
||||
"SCMP_ARCH_ARM"
|
||||
],
|
||||
\"syscalls\": [
|
||||
"syscalls": [
|
||||
{
|
||||
\"names\": [
|
||||
\"fchmodat2\"
|
||||
"names": [
|
||||
"fchmodat2"
|
||||
],
|
||||
\"action\": \"SCMP_ACT_ERRNO\",
|
||||
\"errnoRet\": 38
|
||||
"action": "SCMP_ACT_ERRNO",
|
||||
"errnoRet": 38
|
||||
}
|
||||
]
|
||||
}';
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue