Skip to content

Instantly share code, notes, and snippets.

@johnmccabe
Created May 11, 2017 13:31
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 johnmccabe/fc78374e0c09cf26e49a546a7ca0614e to your computer and use it in GitHub Desktop.
Save johnmccabe/fc78374e0c09cf26e49a546a7ca0614e to your computer and use it in GitHub Desktop.
purge old lumogon containers
#!/bin/bash
echo "Removing lumogon containers"
docker ps -a | grep lumogon_ | awk '{ print $1 }' | xargs -I {} docker rm {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment