Skip to content

Instantly share code, notes, and snippets.

@nlamirault
Last active December 7, 2015 09:58
Show Gist options
  • Save nlamirault/6c362eb4fb625caa8db6 to your computer and use it in GitHub Desktop.
Save nlamirault/6c362eb4fb625caa8db6 to your computer and use it in GitHub Desktop.
Docker clean command
For containers:
docker rm $(docker ps -aq)
For images:
docker rmi $(docker images -q --filter dangling=true)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment