Skip to content

Instantly share code, notes, and snippets.

@jvancoillie
Created December 23, 2016 15:39
Show Gist options
  • Select an option

  • Save jvancoillie/96c86f17ee02eec551125115d24bf654 to your computer and use it in GitHub Desktop.

Select an option

Save jvancoillie/96c86f17ee02eec551125115d24bf654 to your computer and use it in GitHub Desktop.
docker useful commands
# Check CPU consumption
$ docker stats $(docker inspect -f "{{ .Name }}" $(docker ps -q))
# Delete all containers
$ docker rm $(docker ps -aq)
# Delete all images
$ docker rmi $(docker images -q)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment