Privileged Container - CI/CD Glossary Definition
A privileged container runs with --privileged, granting nearly all host kernel capabilities and device access. It effectively removes container isolation and can control the host.
Avoid it in CI
Privileged mode is sometimes used for Docker-in-Docker builds, but it is dangerous on shared runners because a compromised job can take over the host. Prefer rootless builders or a sandboxed runtime instead.
Related guides
Rootless Container - CI/CD Glossary DefinitionRootless Container: A rootless container runs the container engine and workload as an unprivileged user by ma…
Linux Capabilities - CI/CD Glossary DefinitionLinux Capabilities: Linux capabilities split the privileges of root into distinct units (such as `CAP_NET_BIN…
seccomp - CI/CD Glossary Definitionseccomp: seccomp (secure computing mode) is a Linux kernel feature that filters which system calls a process…