Skip to content

Instantly share code, notes, and snippets.

@N1v0k
Created November 14, 2016 09:20
Show Gist options
  • Save N1v0k/31b9a994971a7bba1aca1b2c257c3ca5 to your computer and use it in GitHub Desktop.
Save N1v0k/31b9a994971a7bba1aca1b2c257c3ca5 to your computer and use it in GitHub Desktop.
Cleanup Docker (remove stopped images)
#!/bin/bash
docker rm -v $(docker ps --filter status=exited -q 2>/dev/null) 2>/dev/null
docker rmi $(docker images --filter dangling=true -q 2>/dev/null) 2>/dev/null
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment