Get all running containers by name instead of by shor-uuid to improve readability in logs

Signed-off-by: alberto <alberto@tutum.co>
This commit is contained in:
alberto 2015-07-23 11:14:13 +02:00
parent ec3fdfce3a
commit de68752f30

View file

@ -81,8 +81,8 @@ main () {
labels=$(docker inspect --format '{{ .Config.Labels }}' "$c")
contains "$labels" "docker-bench-security" && benchcont="$c"
done
# List all running containers except docker-bench
containers=$(docker ps -q | grep -v "$benchcont")
# List all running containers except docker-bench (use names to improve readability in logs)
containers=$(docker ps | sed '1d' | awk '{print $NF}' | grep -v "$benchcont")
for test in tests/*.sh
do