Skip to content

Instantly share code, notes, and snippets.

@dsaiztc
Created April 11, 2018 10:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dsaiztc/37cd5e7bf56f41762f43107aae2a79d0 to your computer and use it in GitHub Desktop.
Save dsaiztc/37cd5e7bf56f41762f43107aae2a79d0 to your computer and use it in GitHub Desktop.

Remove all stopped containers

docker rm $(docker ps -a -q)

Remove all untagged 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