nerdexam
Docker

DCA · Question #107

Does this describe the role of Control Groups (cgroups) when used with a Docker container? Solution: user authorization to the Docker API

The correct answer is B. No. Control Groups (cgroups) are a Linux kernel feature for resource management, not for user authorization to the Docker API.

Submitted by viktor_hu· Apr 18, 2026Security

Question

Does this describe the role of Control Groups (cgroups) when used with a Docker container? Solution: user authorization to the Docker API

Options

  • AYes
  • BNo

How the community answered

(25 responses)
  • A
    12% (3)
  • B
    88% (22)

Why each option

Control Groups (cgroups) are a Linux kernel feature for resource management, not for user authorization to the Docker API.

AYes

User authorization to the Docker API is a security concern typically handled by user authentication, permissions, and possibly TLS client certificates, not by resource management features like cgroups.

BNoCorrect

No. Control Groups (cgroups) are a Linux kernel feature used to limit, account for, and isolate resource usage (CPU, memory, disk I/O, network) for groups of processes. User authorization to the Docker API is handled by authentication mechanisms, not cgroups.

Concept tested: Docker cgroups role

Source: https://docs.docker.com/config/containers/resource_constraints/

Topics

#cgroups#Resource management#Container isolation#Docker API security

Community Discussion

No community discussion yet for this question.

Full DCA Practice