Skip to content

Instantly share code, notes, and snippets.

@OrelSokolov
Created December 10, 2014 10:10
Show Gist options
  • Select an option

  • Save OrelSokolov/da0e32a94129d4621e9e to your computer and use it in GitHub Desktop.

Select an option

Save OrelSokolov/da0e32a94129d4621e9e to your computer and use it in GitHub Desktop.
function docker_clean(){
sudo docker rm $(sudo docker ps -a -q)
}
function docker_clean_images(){
docker rmi $(docker images | grep "<none>" | awk "{print $3}")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment