Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save dogukanatakul/70dd6b99279fe616ffd147c14c8fb864 to your computer and use it in GitHub Desktop.

Select an option

Save dogukanatakul/70dd6b99279fe616ffd147c14c8fb864 to your computer and use it in GitHub Desktop.
batch docker container restart with word filter
docker ps --format '{{.Names}} {{.ID}}' | awk '{if ($1 ~ "KEYWORDs") print $2;}' | xargs -P 10 docker restart
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment