whatsdoom.com
  • About
  • Home
  • Projects
  • Quotes
  • Blog
  • Archives
  • blog
  • Clean up Docker Instances

Clean up Docker Instances

Date Sun 15 May 2016Tags
docker / docker-machine

Three useful commands to clean up docker if you run out of space

Clean up Containers

docker rm $(docker ps -a -q)

Clean up Images

docker rmi $(docker images | grep "^<none>" | awk '{print $3}')

Clean up Volumes

docker volume rm $(docker volume ls -qf dangling=true)

« Next Post

List User Installed Packages

Prev Post »

Configure pulseaudio output via command line

profile

About Paul Schwendenman
software developer. electrical engineer. linux enthusiast. amateur photographer

Social
twittergitlabgithubbitbucketflickrredditinstagramlinkedinfacebookkeybase
Recent Posts
Docker compose pokes holes in FirewallsUpdating the Expiration Date of a GPG keyPlatform based dependencies in poetryOptimizing Docker build speed and image Size for a Django projectDocker Compose Log File Settings
Tags
bash
ca
cli tools
debian
django
docker
express
firewall
git
gpg
image magick
javascript
latex
linux
lvm
mocha
mplayer
pass
photography
poetry
python
sh
ssh
ssl
tls
ubuntu
ufw
vpc
vpn
wireguard
Links
websitesaffiliates
© 2023 Paul Schwendenman · Made with pelican, tailwindcss, daisyui

Creative Commons License Content licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License, except where indicated otherwise.

Back to top
  • About
  • Home
  • Projects
  • Quotes
  • Blog
  • Archives