Skip to content

Instantly share code, notes, and snippets.

@zachjamesgreen
Last active January 13, 2016 17:29
Show Gist options
  • Select an option

  • Save zachjamesgreen/91276ac7a60221dbccaa to your computer and use it in GitHub Desktop.

Select an option

Save zachjamesgreen/91276ac7a60221dbccaa to your computer and use it in GitHub Desktop.

#Code tidbits have found or come up with. Just need a place to keep them.

Remove all docker images that are not tagged

docker rmi --force $(docker images | grep "^<none>" | awk '{ print $3 }')

Remove all images

docker rmi --force $(docker images -q)

Remove all containers

docker rm --force $(docker ps -a -q)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment