Skip to content

Instantly share code, notes, and snippets.

@slok
Last active June 18, 2017 17:16
Show Gist options
  • Save slok/b9b136f6ad97586a9764 to your computer and use it in GitHub Desktop.
Save slok/b9b136f6ad97586a9764 to your computer and use it in GitHub Desktop.
Docker shortcuts

Stop all the containers:

docker stop `docker ps -q`

Remove all the containers:

docker rm `docker ps -aq`

Delete all unnamed/untagged images:

docker rmi `docker images |grep none | awk '{print $3}'`
@jgskin
Copy link

jgskin commented Oct 6, 2014

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