Ensure a separate partition for containers has been created
Scanned 9/3/2026
Install to Claude Code
npx -y skills add CyberStrikeus/CyberStrike --skill cis-docker-v160-1.1.1 --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Cis Docker V160 1.1.1?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/cyberstrikeus-cis-docker-v160-1-1-1)More formats (shields.io, HTML) on the badges page.
---
name: cis-docker-v160-1.1.1
description: "Ensure a separate partition for containers has been created"
category: cis-docker
version: "1.6.0"
author: cyberstrike-official
tags: [cis, docker, host-configuration, storage, partition, linux]
cis_id: "1.1.1"
cis_benchmark: "CIS Docker Benchmark v1.6.0"
tech_stack: [docker, linux]
cwe_ids: []
chains_with: []
prerequisites: []
severity_boost: {}
---
# CIS Docker Benchmark v1.6.0 - 1.1.1
## Profile Applicability
- Level 1 - Docker - Linux
## Description
All Docker containers and their data and metadata is stored under `/var/lib/docker` directory. By default, `/var/lib/docker` should be mounted under either the `/` or `/var` partitions dependent on how the Linux operating system in use is configured.
## Rationale
Docker depends on `/var/lib/docker` as the default directory where all Docker related files, including the images, are stored. This directory could fill up quickly causing both Docker and the host to become unusable. For this reason, you should create a separate partition (logical volume) for storing Docker files.
## Impact
None.
## Audit Procedure
At the Docker host execute one of the below commands:
```bash
grep '/var/lib/docker\s' /proc/mounts
```
This should return the partition details for the `/var/lib/docker` mountpoint.
```bash
mountpoint -- "$(docker info -f '{{ .DockerRootDir }}')"
```
This should return whether the configured root directory is a mount point.
## Remediation
For new installations, you should create a separate partition for the `/var/lib/docker` mount point. For systems which have already been installed, you should use the Logical Volume Manager (LVM) within Linux to create a new partition.
## Default Value
By default, `/var/lib/docker` is mounted under the `/` or `/var` partitions dependent on how the OS is configured.
## References
1. https://www.projectatomic.io/docs/docker-storage-recommendation/
2. https://docs.docker.com/storage/
## CIS Controls
| Controls Version | Control | IG 1 | IG 2 | IG 3 |
| ---------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---- | ---- | ---- |
| v8 | 3.12 Segment Data Processing and Storage Based on Sensitivity<br>Segment data processing and storage based on the sensitivity of the data. Do not process sensitive data on enterprise assets intended for lower sensitivity data. | | ● | ● |
| v7 | 14 Controlled Access Based on the Need to Know<br>Controlled Access Based on the Need to Know | | | |
## Assessment Status
Manual
## Additional Information
N/A
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!