Skip to content

Instantly share code, notes, and snippets.

@ViktorOgnev
Last active September 23, 2015 16:07
Show Gist options
  • Save ViktorOgnev/8f8675bba3c687430fd1 to your computer and use it in GitHub Desktop.
Save ViktorOgnev/8f8675bba3c687430fd1 to your computer and use it in GitHub Desktop.
remove stopped containers and untagged images
#!/bin/bash
# stop all
docker stop $(docker ps -a | awk '{print $1}')
# remove all containers
docker rm $(docker ps -a | awk '{print $1}')
# remove untagged images
docker rmi $(docker images -a | grep "^<none>" | awk '{print $3}')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment