Skip to content

Instantly share code, notes, and snippets.

@thomasstep
Created April 29, 2021 14:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thomasstep/73456f1ff4836e5af8d8dea8384877bc to your computer and use it in GitHub Desktop.
Save thomasstep/73456f1ff4836e5af8d8dea8384877bc to your computer and use it in GitHub Desktop.
Force A Full Clean Docker
#!/bin/bash
docker rm $(docker ps -aq)
docker rmi --force $(docker images -q)
docker system prune --volumes
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment