]> git.immae.eu Git - github/fretlink/docker-puppeteer.git/blob - example/docker-compose.integration-tests.yml
Merge pull request #3 from paulrbr-fl/add-git-bin
[github/fretlink/docker-puppeteer.git] / example / docker-compose.integration-tests.yml
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"