aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorTim Lucas <t@toolmantim.com>2019-02-06 10:55:14 +1100
committerGitHub <noreply@github.com>2019-02-06 10:55:14 +1100
commit7cb15ebab7dfb621245a6cef2344f30cdf107036 (patch)
tree5e77dd4fc73a8d43aed4b4903896529cc47a2009
parentf2ea4b9e74b9a8110490ede83d195565f57c004d (diff)
downloaddocker-puppeteer-7cb15ebab7dfb621245a6cef2344f30cdf107036.tar.gz
docker-puppeteer-7cb15ebab7dfb621245a6cef2344f30cdf107036.tar.zst
docker-puppeteer-7cb15ebab7dfb621245a6cef2344f30cdf107036.zip
Create docker-compose.integration-tests.yml
-rw-r--r--example/docker-compose.integration-tests.yml16
1 files changed, 16 insertions, 0 deletions
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 @@
1version: '3'
2services:
3 tests:
4 build:
5 context: .
6 dockerfile: Dockerfile.integration-tests
7 volumes:
8 - "./integration-tests:/integration-tests"
9 - "./screenshots:/screenshots"
10 command: mocha --recursive /integration-tests
11 links:
12 - app
13 app:
14 image: tutum/hello-world
15 expose:
16 - "80"