Skip to content

Instantly share code, notes, and snippets.

@maxgfr
Last active January 2, 2022 22:31
Show Gist options
  • Save maxgfr/783b42ca6a59688f733bbd700b06d98e to your computer and use it in GitHub Desktop.
Save maxgfr/783b42ca6a59688f733bbd700b06d98e to your computer and use it in GitHub Desktop.
Remove all docker container

Remove all docker container

docker system prune
# 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 -q)

# 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

Original gist : https://gist.github.com/beeman/aca41f3ebd2bf5efbd9d7fef09eac54d

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