Docker Essentials

PassAudited by ClawScan on May 1, 2026.

Overview

This is a coherent Docker command reference, but it includes powerful Docker operations that should be run only with clear user intent.

This skill appears safe as an instruction-only Docker reference. Before installing or using it, remember that Docker commands can delete resources, publish images, mount local files, expose ports, or leave services running; approve those actions explicitly and verify command targets.

Findings (2)

Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.

What this means

If the agent or user runs these examples against the wrong target, local containers, images, volumes, or remote registry content could be changed or removed.

Why it was flagged

The skill documents Docker commands that can force-remove containers, prune resources including volumes, or push images to a registry. These are Docker-essential operations, but they can have high impact if run without checking the target.

Skill content
docker rm -f container_name
...
docker system prune --volumes
...
docker push myrepo/myapp:1.0
Recommendation

Use this skill as a command reference, but confirm destructive, bulk cleanup, and registry-publishing commands before execution.

NoteHigh Confidence
ASI10: Rogue Agents
What this means

Background services or volumes may keep running or consuming disk space until explicitly stopped or removed.

Why it was flagged

The instructions include background containers, detached Compose services, and persistent volumes. This is normal Docker usage, but it means actions may continue or data may remain after the immediate command finishes.

Skill content
# Run in background (detached)
docker run -d nginx
...
docker-compose up -d
...
docker volume create myvolume
Recommendation

Run detached containers and persistent volumes only when intended, and clean them up with explicit stop, down, rm, or prune commands after review.