summaryrefslogtreecommitdiff
path: root/tests/http/big-test-kill.sh
blob: 29dbd638190e1332526eb8dd9785670e80faabcb (plain)
1
2
3
4
5
6
7
8
9
#!/bin/bash

# Kills all running Docker containers on all big-test-hosts

export PATH=/bin:/usr/bin:/usr/local/bin:/usr/sbin:/sbin

pssh -h big-test-hosts -i -t 0 -p 256 "sudo docker ps -aq | xargs -r sudo docker rm -f"

exit 0