Skip to content

Instantly share code, notes, and snippets.

@beeman
Created November 15, 2016 03:04
Show Gist options
  • Save beeman/aca41f3ebd2bf5efbd9d7fef09eac54d to your computer and use it in GitHub Desktop.
Save beeman/aca41f3ebd2bf5efbd9d7fef09eac54d to your computer and use it in GitHub Desktop.
Remove all from Docker
# Stop all containers
docker stop `docker ps -qa`
# Remove all containers
docker rm `docker ps -qa`
# Remove all images
docker rmi -f `docker images -qa `
# Remove all volumes
docker volume rm $(docker volume ls -qf)
# Remove all networks
docker network rm `docker network ls -q`
# Your installation should now be all fresh and clean.
# The following commands should not output any items:
# docker ps -a
# docker images -a
# docker volume ls
# The following command show only show the default networks:
# docker network ls
@AlbertRenshaw
Copy link

After these commands I still had volumes under docker volume ls had to run docker volume prune to remove them. Reclaimed almost half a gig!

@ShayestehHS
Copy link

thanks

@ilibilibom
Copy link

You have a typo, it should be:

docker system prune --volumes --all (note plural volumes)

Try this 👍

docker stop `docker ps -qa`
docker system prune --volume --all

This is actually plural now --volumes

@Lucky-Rathore
Copy link

thanks!!!

@lil12t
Copy link

lil12t commented Jun 7, 2023

Thanks

@atowersc
Copy link

<3

@marianomd
Copy link

This is missing:

docker builder prune

@sbrl
Copy link

sbrl commented Apr 22, 2024

** The backtick syntax should be replaced with $()

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment