Skip to content

Instantly share code, notes, and snippets.

@unceus
Created July 18, 2017 18:55
Show Gist options
  • Save unceus/28cf9af2263a0f77b3b0a7f4410f1429 to your computer and use it in GitHub Desktop.
Save unceus/28cf9af2263a0f77b3b0a7f4410f1429 to your computer and use it in GitHub Desktop.
remove stopped docker containers
for item in $(docker ps -aq); do
docker stop $item
docker rm $item
done
for item in $(docker images --filter dangling=true -q); do
docker rmi $item
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment