Skip to content

Things I Keep Forgetting

Estimated time to read: 1 minute

  • Last Updated: June, 2024

Cleanup Docker unused objects

  • Kill all running containers

    docker kill $(docker ps -q)
    

  • Delete all stopped containers

    docker rm $(docker ps -a -q)
    

  • Delete all images

    docker rmi $(docker images -q)
    

  • Remove all unused containers, networks, images (both dangling and unused), and optionally, volumes

    docker system prune -af
    

Comments