From 7cb15ebab7dfb621245a6cef2344f30cdf107036 Mon Sep 17 00:00:00 2001 From: Tim Lucas Date: Wed, 6 Feb 2019 10:55:14 +1100 Subject: [PATCH] Create docker-compose.integration-tests.yml --- example/docker-compose.integration-tests.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 example/docker-compose.integration-tests.yml diff --git a/example/docker-compose.integration-tests.yml b/example/docker-compose.integration-tests.yml new file mode 100644 index 0000000..65ed241 --- /dev/null +++ b/example/docker-compose.integration-tests.yml @@ -0,0 +1,16 @@ +version: '3' +services: + tests: + build: + context: . + dockerfile: Dockerfile.integration-tests + volumes: + - "./integration-tests:/integration-tests" + - "./screenshots:/screenshots" + command: mocha --recursive /integration-tests + links: + - app + app: + image: tutum/hello-world + expose: + - "80" -- 2.41.0