Skip to content

Instantly share code, notes, and snippets.

@akornatskyy
Last active August 25, 2017 09:40
Show Gist options
  • Select an option

  • Save akornatskyy/29c5c5cbdc83b8aba9fd54abb7404c24 to your computer and use it in GitHub Desktop.

Select an option

Save akornatskyy/29c5c5cbdc83b8aba9fd54abb7404c24 to your computer and use it in GitHub Desktop.
Docker: How to remove all docker images
#!/bin/sh
docker rmi $(docker images -a -q)
docker system prune -a -f
sudo /etc/init.d/docker stop
sudo rm -rf /var/lib/docker
sudo /etc/init.d/docker start
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment