Skip to content

Instantly share code, notes, and snippets.

@scicco
Created March 7, 2023 16:30
Show Gist options
  • Save scicco/dcde68e7aad30f902c522ab3e6d3c65c to your computer and use it in GitHub Desktop.
Save scicco/dcde68e7aad30f902c522ab3e6d3c65c to your computer and use it in GitHub Desktop.
stop_gitlab_runner.sh
#!/bin/bash
docker ps -a | grep runner | cut -d' ' -f1 | xargs -d $'\n' bash -c 'for arg do docker stop -t 1 "$arg"; docker rm "$arg"; done' _
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment