- move docker/docker-py clone to the Dockerfile - put "integration test daemon startup" code in a separate file for both scripts to source - add new test-docker-py Makefile target - include "python-websocket" package in Dockerfile for running the tests Signed-off-by: Andrew "Tianon" Page <admwiggin@gmail.com> Upstream-commit: 100267de81985bbf3b976bfde850def89487dc11 Component: engine
8 lines
157 B
Bash
8 lines
157 B
Bash
#!/bin/bash
|
|
|
|
for pid in $(find "$DEST" -name docker.pid); do
|
|
DOCKER_PID=$(set -x; cat "$pid")
|
|
( set -x; kill $DOCKER_PID )
|
|
wait $DOCKERD_PID || true
|
|
done
|