forked from Wavyzz/dolibarr
# Qual: Fix line endings of yaml files for yamllint. yamllint (included in the pre-commit setup) has some messages about the line-endings of yml files. This fixes that.
17 lines
321 B
YAML
17 lines
321 B
YAML
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
|