Skip to content

Instantly share code, notes, and snippets.

@jonesd
Last active October 6, 2015 18:55

Docker: Common Commands

Stop all containers

docker stop $(docker ps -a -q)

Remove all containers

docker rm $(docker ps -a -q)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment