Test against 1.10rc1.

Signed-off-by: Daniel Nephin <dnephin@docker.com>
This commit is contained in:
Daniel Nephin 2016-01-15 19:04:01 -05:00
parent 9e805731e7
commit ab927b986f
1 changed files with 2 additions and 6 deletions

View File

@ -18,7 +18,7 @@ get_versions="docker run --rm
if [ "$DOCKER_VERSIONS" == "" ]; then
DOCKER_VERSIONS="$($get_versions default)"
elif [ "$DOCKER_VERSIONS" == "all" ]; then
DOCKER_VERSIONS="1.9.1 1.10.0-dev"
DOCKER_VERSIONS=$($get_versions -n 2 recent)
fi
@ -38,11 +38,7 @@ for version in $DOCKER_VERSIONS; do
trap "on_exit" EXIT
if [[ $version == *"-dev" ]]; then
repo="dnephin/dind"
else
repo="dockerswarm/dind"
fi
docker run \
-d \