Skip to content

Docker Security Overhaul: Limit System Calls Using Seccomp #42

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
josecelano opened this issue Apr 14, 2025 · 0 comments
Open

Docker Security Overhaul: Limit System Calls Using Seccomp #42

josecelano opened this issue Apr 14, 2025 · 0 comments
Labels
- Admin - Enjoyable to Install and Setup our Software Security Publicly Connected to Security

Comments

@josecelano
Copy link
Member

Use Seccomp security profiles to restrict the actions available within the container

https://docs.docker.com/engine/security/seccomp/

Example:

# seccomp.yaml
{
  "defaultAction": "SCMP_ACT_ALLOW",
  "syscalls": [
    {
      "names": ["ptrace"],
      "action": "SCMP_ACT_KILL"
    }
  ]
}
@josecelano josecelano added - Admin - Enjoyable to Install and Setup our Software Security Publicly Connected to Security labels Apr 14, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
- Admin - Enjoyable to Install and Setup our Software Security Publicly Connected to Security
Projects
None yet
Development

No branches or pull requests

1 participant