Skip to content

Docker Security Overhaul: Limit System Calls Using Seccomp #42

@josecelano

Description

@josecelano

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"
    }
  ]
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    - Admin -Enjoyable to Install and Setup our SoftwareSecurityPublicly Connected to Security

    Type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions