We use Docker at work for pretty much all our deployments, and have a local build/testing system that uses Docker locally. Recently, I started getting weird intermittent failures in the integration tests, and some digging showed a lot of errors around running out of space like no space left on device
.
I found that there are 3 ways to clean up lingering Docker materials to get rid of this message and get my tests to run properly so I can find the actual failure.
- Docker images: View the images with the
docker images
command, and delete them withdocker rmi
. -
Docker containers: Look at the docker containers with
docker ps -a
command. The-a
flag makes it list all the containers, not just currently running ones. To clean up containers, use thedocker rm
command. -
Docker volumes: List all the docker volumes with
docker volume ls
, remove them withdocker volume rm
.
Some helpful commands
StackOverflow was very helpful on this one. I took a ‘burn it all down’ approach to cleaning up after Docker, so I just deleted everything. Links to further info on each command in the footnotes.
docker rm $(docker ps -aq)
The-q
flag limits the output so containers gets quietly deleted instead of getting a bunch of error messages over the extraneous text. This will remove everything1. Another potentially useful flag that I did not use this time, but will keep a note of is the-v
flag. It is supposed to remove the associated volume as well, allowing the volume removal step to be skipped 2 3.-
docker rmi $(docker images -q)
Same as above, but for images. Again, removes everything 4. -
docker rmi $(docker images -q -f dangling=true)
For a less scorched earth approach to removing images, this allows only the removal of images that are no longer needed 5. -
docker volume rm $(docker volume ls -qf dangling=true)
Similar to the above, remove only unused volumes 6.
Once I knew what to look for, the documentation from Docker was also very helpful about how to move through the clean-up quickly.
- StackOverflow: Docker error no space left on device ↩
- StackOverflow: Docker on Mac error no space left on device ↩
- Docker Docs: rm ↩
- StackOverflow: Docker error no space left on device ↩
- StackOverflow: Docker on Mac error no space left on device ↩
- StackOverflow: Docker error no space left on device ↩