How can I restrict any system call made inside a docker container. If the given process makes a system call it will be blocked. Or how can I use seccomp with docker.
相关问题
- Docker task in Azure devops won't accept "$(pw
- Unable to run mariadb when mount volume
- Unspecified error (0x80004005) while running a Doc
- What would prevent code running in a Docker contai
- How to reload apache in php-apache docker containe
You can see more at "Seccomp security profiles for Docker" (the eature is available only if the kernel is configured with
CONFIG_SECCOMP
enabled.)The supoprt for docker containers will be in docker 1.10: see issue 17142
PR 17989 has been merged.