Skip to content

Instantly share code, notes, and snippets.

@thomasbabuj
Forked from jonathanconway/docker-nuke
Created April 14, 2020 03:49
Show Gist options
  • Save thomasbabuj/a541b5b421793ec0fe75cb0c6d787e6a to your computer and use it in GitHub Desktop.
Save thomasbabuj/a541b5b421793ec0fe75cb0c6d787e6a to your computer and use it in GitHub Desktop.
Nuke all docker images and containers ☢️
#!/bin/bash
docker rm --force $(docker ps --all -q)
docker rmi --force $(docker images --all -q)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment