SafeDisk AI

Docker Swarm storage incident

Portainer Swarm Image Pull No Space Left On Device

When a Portainer stack deploy reports success but Swarm tasks move to Rejected, the Docker API may have accepted the service spec before the selected node failed the image pull. Capture the task state, Docker root, blocks, inodes, and image/cache pressure before pruning or redeploying.

Ask free AI judgment

Find what you can delete.

Leave your email now. The scan summary can follow after the first reply; we send the free SafeDisk AI deletion trial step only if deletion risk is still unclear.

Add command output optional

Free trial step. We reply first with a delete / confirm / protect judgment or one read-only detail we still need.

See sample result Ask AI about one file

Evidence To Capture First

The goal is to distinguish a real disk-full image pull from a missing image, registry error, or Swarm task-state reporting gap.

Read-only first pass

Measure the node that rejected the task.

Run this on the affected Swarm node, then inspect the task message before deleting images or volumes.

docker service ps --no-trunc <service_name>
docker service inspect <service_name> --format '{{json .UpdateStatus}}'
docker node ps --no-trunc self | grep -Ei 'Rejected|No space|pull|image' || true
docker info --format 'root={{.DockerRootDir}} driver={{.Driver}}'
df -h / /var/lib/docker 2>/dev/null || df -h
df -i / /var/lib/docker 2>/dev/null || df -i
docker system df -v

Safe Decision Order

  1. Confirm the failing node: Swarm can schedule a task on a different node than the one you are watching.
  2. Check Docker root, not only /: the image store can be the boundary that blocks layer writes.
  3. Separate blocks from inodes: a task may fail even when df -h looks reasonable if inode pressure is the real limit.
  4. Classify reclaimable data: build cache and unused images are safer than named volumes, bind mounts, or active service state.

Do Not Delete First

Free AI deletion trial

Need a delete / confirm / protect answer?

Send the issue link, log excerpt, or storage summary first. We reply with the next safe move and offer the free SafeDisk AI deletion trial only if the incident still needs review.

Add output optional

Start with email. Output can follow after the first reply.