summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJoffrey F <joffrey@docker.com>2015-09-09 10:46:06 -0700
committerJoffrey F <joffrey@docker.com>2015-09-09 14:49:58 -0700
commitfa3082b6cd46cd486bb38ca4e266ff489f6dff94 (patch)
treebbc1e1d7d446e3640b3543eb8c5a3d1b1936e3b2 /Makefile
parentabaf346b49277004399bf7308de28e2ee012739c (diff)
downloaddocker-py-fa3082b6cd46cd486bb38ca4e266ff489f6dff94.tar.gz
Update integration-dind task756-containerized-integration
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 8 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 2d853fd..0bda527 100644
--- a/Makefile
+++ b/Makefile
@@ -4,6 +4,9 @@ HOST_TMPDIR=test -n "$(TMPDIR)" && echo $(TMPDIR) || echo /tmp
all: test
+clean:
+ docker rm -vf dpy-dind
+
build:
docker build -t docker-py .
@@ -24,6 +27,9 @@ integration-test: build
integration-test-py3: build-py3
docker run -v `$(HOST_TMPDIR)`:/tmp -v /var/run/docker.sock:/var/run/docker.sock docker-py3 py.test -rxs tests/integration_test.py
-integration-ci:
+integration-dind: build build-py3
docker build -t dpy-tests -f ./tests/Dockerfile .
- docker run --privileged -t dpy-tests
+ docker run -d --name dpy-dind -v /tmp --privileged dockerswarm/dind:1.8.1 docker -d -H tcp://0.0.0.0:2375
+ docker run --volumes-from dpy-dind --env="DOCKER_HOST=tcp://docker:2375" --link=dpy-dind:docker docker-py py.test -rxs tests/integration_test.py
+ docker run --volumes-from dpy-dind --env="DOCKER_HOST=tcp://docker:2375" --link=dpy-dind:docker docker-py3 py.test -rxs tests/integration_test.py
+ docker rm -vf dpy-dind