Skip to content

Instantly share code, notes, and snippets.

@lightningspirit
Last active December 4, 2018 10:03
Show Gist options
  • Save lightningspirit/283f9bb6af803a25e92956731ed3ca48 to your computer and use it in GitHub Desktop.
Save lightningspirit/283f9bb6af803a25e92956731ed3ca48 to your computer and use it in GitHub Desktop.
Docker Container & Images Remover
#!/usr/bin/env sh
docker rm $(docker ps -a | awk '{print $1}')
docker rmi $(docker images | awk '{print $3}')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment