docker-composeのcommandの設定が長くなると読みにくくなってしまう。
version: '3'
services:
phpunit:
command: ./vendor/bin/phpunit -c acca-component/phpunit.xml --testsuite unit --coverage-text --colors=never
これは普通に改行することができる:
version: '3'
services:
phpunit:
command:
./vendor/bin/phpunit
-c acca-component/phpunit.xml
--testsuite unit
--coverage-text
--colors=never