docker
registry
ai_generated
true
layer already being pulled by another client. Waiting...
ID: docker/layer-already-being-pulled
92%Fix Rate
93%Confidence
50Evidence
2023-01-01First Seen
Version Compatibility
| Version | Status | Introduced | Deprecated | Notes |
|---|---|---|---|---|
| 24 | active | — | — | — |
Root Cause
Another Docker pull is downloading the same layer concurrently.
genericWorkarounds
-
90% success Wait for the other pull to complete — this is expected behavior during parallel pulls
Docker daemon serializes layer downloads; the second pull reuses the first's result
-
85% success If stuck, restart Docker daemon: sudo systemctl restart docker
Clears stuck layer downloads; running containers will stop
Dead Ends
Common approaches that don't work:
-
Canceling and restarting the pull
60% fail
Will hit the same issue if another pull is still running
-
Deleting all local images to force a fresh pull
75% fail
Wastes bandwidth; all images need to be re-downloaded
Error Chain
Frequently confused with: