aboutsummaryrefslogtreecommitdiffhomepage
path: root/example/docker-compose.integration-tests.yml
blob: 65ed241d6cbcfc3d32043418f5381169a4f8c509 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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"