Skip to content

Instantly share code, notes, and snippets.

@lemnik
Created November 23, 2018 08:50
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 lemnik/af213f0504415ecbc1e457d9e84fd501 to your computer and use it in GitHub Desktop.
Save lemnik/af213f0504415ecbc1e457d9e84fd501 to your computer and use it in GitHub Desktop.
Clear all Docker containers and volumes
#!/bin/bash
docker container rm `docker container ls -a | cut -d " " -f1 | tail -n +2`; docker volume prune -f
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment