summaryrefslogtreecommitdiffstats
path: root/vendor/mobiledetect/mobiledetectlib/docker-compose.yml
blob: 58ce75e879ca0e5cc7c1cae9a77398b0a9a86ace (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
app:
  restart: 'on-failure'
  image: php:7
  working_dir: /app
  command: vendor/bin/phpunit -v -c tests/phpunit.xml --coverage-text --strict-coverage --stop-on-risky
  ports:
    - "8000:8000"
  volumes:
    - .:/app

composer:
  restart: 'no'
  image: composer/composer:php7
  command: install
  volumes:
    - .:/app