Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,4 @@ The security profile is necessary to modify the allowed syscalls. See https://bl
https://github.com/jessfraz/dotfiles/blob/main/etc/docker/seccomp/chrome.json for the original source of this profile.

Since then, it seems the Chromium requirements have evolved, so [another set of permissions needed to be granted](https://github.com/jlandure/alpine-chrome/issues/272).
[And another one.](https://github.com/webfactory/docker-alpine-chromium/pull/3)
40 changes: 40 additions & 0 deletions chrome.json
Original file line number Diff line number Diff line change
Expand Up @@ -1590,6 +1590,46 @@
"name": "epoll_pwait2",
"action": "SCMP_ACT_ALLOW",
"args": null
},
{
"name": "preadv2",
"action": "SCMP_ACT_ALLOW",
"args": null
},
{
"name": "pwritev2",
"action": "SCMP_ACT_ALLOW",
"args": null
},
{
"name": "pkey_alloc",
"action": "SCMP_ACT_ALLOW",
"args": null
},
{
"name": "pkey_free",
"action": "SCMP_ACT_ALLOW",
"args": null
},
{
"name": "pkey_mprotect",
"action": "SCMP_ACT_ALLOW",
"args": null
},
{
"name": "membarrier",
"action": "SCMP_ACT_ALLOW",
"args": null
},
{
"name": "rseq",
"action": "SCMP_ACT_ALLOW",
"args": null
},
{
"name": "clone3",
"action": "SCMP_ACT_ALLOW",
"args": null
}
]
}
Loading