mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-12-06 17:48:25 +01:00
16 lines
320 B
YAML
16 lines
320 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 |