Skip to content

Instantly share code, notes, and snippets.

@kerasai
Created January 27, 2020 15:45
Show Gist options
  • Save kerasai/c1decfc5eb6e7f079592295d6ae8cb80 to your computer and use it in GitHub Desktop.
Save kerasai/c1decfc5eb6e7f079592295d6ae8cb80 to your computer and use it in GitHub Desktop.
Docker Container Clean-Up
# TODO: document these.
docker rm -v $(docker ps --filter status=exited -q 2>/dev/null) 2>/dev/null
docker rmi $(docker images --filter dangling=true -q 2>/dev/null) 2>/dev/null
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment