Skip to content

Instantly share code, notes, and snippets.

@canthis
Last active September 2, 2020 14:41
Show Gist options
  • Save canthis/41533961cfacd83a9d2d3a0b4c3efe13 to your computer and use it in GitHub Desktop.
Save canthis/41533961cfacd83a9d2d3a0b4c3efe13 to your computer and use it in GitHub Desktop.
Stop Docker containers via fuzzy matching on the container name
docker ps --format '{{.Names}}' | grep "keyword" | awk '{print $1}' | xargs -I {} docker stop {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment