4
3

More than 5 years have passed since last update.

docker-composeでcommandが長いとき改行したい

Posted at

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
4
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
3