docker-composeでコマンドの実行結果を取得

  • runコマンドでサービスを指定してコマンドを蹴ると実行結果が取れる
    • e.g. docker-compose run node-git 'npm' 't'
  • コマンドを複数繋げる場合はシェルを呼び出してやる
    • e.g. docker-compose run node-git 'sh' '-c' '"ls -la && grep foo"'