Skip to content

Instantly share code, notes, and snippets.

@odellt
Created March 4, 2020 14:01
Show Gist options
  • Save odellt/c6310f2f4ac9e6b605bdc36119d9c7a2 to your computer and use it in GitHub Desktop.
Save odellt/c6310f2f4ac9e6b605bdc36119d9c7a2 to your computer and use it in GitHub Desktop.
#! /bin/bash
echo "Cleaning Docker images"
# Stops all docker containers
docker stop $(docker ps -aq)
# Remove all containers
docker rm $(docker ps -aq)
# Remove all images
docker rmi $(docker images -q) --force
# Removes all unused images and volume
docker system prune --all --volumes --force
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment