diff options
author | Tim Lucas <t@toolmantim.com> | 2019-02-06 11:31:56 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-02-06 11:31:56 +1100 |
commit | 4e7c52141ab2170730089e93fb732aa1baba1b2f (patch) | |
tree | 4203de845f246013e763db95da3f0ea1fd4f1410 /example/docker-compose.integration-tests.yml | |
parent | f2ea4b9e74b9a8110490ede83d195565f57c004d (diff) | |
parent | 9f994586f630ebc675710563f30fcf1c5bcfcf48 (diff) | |
download | docker-puppeteer-4e7c52141ab2170730089e93fb732aa1baba1b2f.tar.gz docker-puppeteer-4e7c52141ab2170730089e93fb732aa1baba1b2f.tar.zst docker-puppeteer-4e7c52141ab2170730089e93fb732aa1baba1b2f.zip |
Merge pull request #56 from buildkite/add-example
Move example into it's own folder
Diffstat (limited to 'example/docker-compose.integration-tests.yml')
-rw-r--r-- | example/docker-compose.integration-tests.yml | 16 |
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..074f4d1 --- /dev/null +++ b/example/docker-compose.integration-tests.yml | |||
@@ -0,0 +1,16 @@ | |||
1 | version: '3' | ||
2 | services: | ||
3 | tests: | ||
4 | build: | ||
5 | context: . | ||
6 | dockerfile: Dockerfile.integration-tests | ||
7 | volumes: | ||
8 | - "./integration-tests:/integration-tests" | ||
9 | - "./screenshots:/screenshots" | ||
10 | command: "wait-for-it.sh app:80 -- mocha --recursive /integration-tests" | ||
11 | links: | ||
12 | - app | ||
13 | app: | ||
14 | image: tutum/hello-world | ||
15 | expose: | ||
16 | - "80" | ||