Skip to content

Instantly share code, notes, and snippets.

@fordnox
Created October 5, 2023 09:08
Show Gist options
  • Save fordnox/b1c387688bf5cc7abfca0a0e8afc351a to your computer and use it in GitHub Desktop.
Save fordnox/b1c387688bf5cc7abfca0a0e8afc351a to your computer and use it in GitHub Desktop.
clean all docker shit makefile target
clean:
docker stop $$(docker ps -aq) || true
docker rm $$(docker ps -aq) || true
docker container prune -f || true
docker rmi $$(docker images -q) || true
docker image prune -f || true
docker volume rm $$(docker volume ls -q) || true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment