# Cis Docker 2.16

> Ensure live restore is enabled

- Skill: `cyberstrikeus/cis-docker-2-16` (Agent Skill)
- Install (CLI): `npx skillmds@latest add cyberstrikeus/cis-docker-2-16`
- Raw SKILL.md: https://api.skillmd.com/api/skills/cyberstrikeus/cis-docker-2-16/raw
- Safety review: PASS (external: skill-scanner PASS, skillspector PASS)
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: DevOps & Infra
- Author: cyberstrikeus (https://skillmd.com/u/cyberstrikeus)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/cyberstrikeus/cis-docker-2-16

---


# Ensure live restore is enabled (Manual)

## Profile Applicability

• Level 1 - Docker - Linux

## Description

The `--live-restore` option enables full support of daemon-less containers within Docker. It ensures that Docker does not stop containers on shutdown or restore and that it properly reconnects to the container when restarted.

## Rationale

One of the important security triads is availability. Setting the `--live-restore` flag within the Docker daemon ensures that container execution is not interrupted when it is not available. This also makes it easier to update and patch the Docker daemon without application downtime.

## Impact

None.

## Audit Procedure

You should run `docker info` and ensure that the `Live Restore Enabled` property is set to `true`.

```bash
docker info --format '{{ .LiveRestoreEnabled }}'
```

Alternatively, you could run the below command and ensure that `--live-restore` is in use.

```bash
grep "--live-restore" /etc/docker/daemon.json
```

The contents of `/etc/docker/daemon.json` should also be reviewed to ensure this setting is in place.

## Remediation

Run Docker in daemon mode and pass `--live-restore` to it as an argument.

For Example,

```bash
dockerd --live-restore
```

## Default Value

By default, `--live-restore` is not enabled.

## References

1. https://docs.docker.com/config/containers/live-restore/

## CIS Controls

**Controls Version:** v8

**Control:** 16.10 Apply Secure Design Principles in Application Architectures

Apply secure design principles in application architectures. Secure design principles include the concept of least privilege and enforcing mediation to validate every operation that the user makes, ensuring that explicit error checking is performed and documented for all input, including for size, data type, and acceptable ranges or formats. Secure design also means minimizing the application infrastructure attack surface, such as turning off unprotected ports and services, removing unnecessary programs and files, and renaming or removing default accounts.

**IG 1:**
**IG 2:** ●
**IG 3:** ●

---

**Controls Version:** v7

**Control:** 18 Application Software Security

Application Software Security

