Skip to content

Instantly share code, notes, and snippets.

@fvoges
Last active March 12, 2022 09:05
Show Gist options
  • Select an option

  • Save fvoges/4e6c53ae36fec6aa990d65e241322989 to your computer and use it in GitHub Desktop.

Select an option

Save fvoges/4e6c53ae36fec6aa990d65e241322989 to your computer and use it in GitHub Desktop.
Docker clean up

How to clean up Docker files

Sauce: https://linuxhint.com/cleanup-docker/

#!/bin/bash
docker ps -a -f status=exited -q | xargs -r docker rm
docker image prune -f
docker volume ls -f dangling=true -q | xargs -r docker volume rm
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment