File tree Expand file tree Collapse file tree 4 files changed +7
-5
lines changed
Expand file tree Collapse file tree 4 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -6,5 +6,5 @@ MARIADB_IMAGE='mariadb'
66MARIADB_TAG=' latest'
77MINIO_IMAGE=' minio/minio'
88MINIO_TAG=' latest'
9- DIND_IMAGE=' jpetazzo/dind '
10- DIND_TAG=' latest '
9+ DIND_IMAGE=' docker '
10+ DIND_TAG=' dind '
Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ echo ">> Using Temp Dockerfile: $DOCKERFILE"
1515
1616cat << EOF > $DOCKERFILE
1717FROM ${DIND_IMAGE} :${DIND_TAG}
18+ RUN apk add bash curl
1819ADD . /build/
1920WORKDIR /build
2021CMD ["/build/tests/runner.sh"]
Original file line number Diff line number Diff line change @@ -51,8 +51,8 @@ function wait_on_port {
5151function start_docker {
5252 echo " => Starting docker"
5353 if ! docker version > /dev/null 2>&1 ; then
54- wrapdocker > /dev/null 2>&1 &
55- sleep 5
54+ dockerd-entrypoint.sh > /dev/null 2>&1 &
55+ sleep 10
5656 fi
5757}
5858
@@ -63,7 +63,7 @@ function check_docker {
6363
6464function check_environment {
6565 echo " => Testing environment"
66- docker version > /dev/null
66+ docker version > /dev/null
6767 which curl > /dev/null
6868}
6969
Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ CWD="$(dirname $0)/"
1010
1111echo " => Starting $0 "
1212start_docker
13+ unset DOCKER_HOST # https://github.com/docker-library/docker/issues/200#issuecomment-550089770
1314check_docker
1415check_environment
1516cleanup
You can’t perform that action at this time.
0 commit comments