Skip to content

Instantly share code, notes, and snippets.

@johnmccabe
Created May 11, 2017 13:31
Show Gist options
  • Select an option

  • Save johnmccabe/fc78374e0c09cf26e49a546a7ca0614e to your computer and use it in GitHub Desktop.

Select an option

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