Beispiel #1
0
 /**
  * @param $composeLogsArguments
  */
 private function displayLogs($composeLogsArguments)
 {
     $this->processRunner->followsUpWith($this->composeExecutableFinder->find(), $composeLogsArguments);
 }
 /**
  * {@inheritdoc}
  */
 public function build(Project $project, array $containers = [])
 {
     $composePath = $this->composeExecutableFinder->find();
     $this->processRunner->run(implode(' ', [$composePath, 'build', implode(' ', $containers)]));
     $this->reset($project, $containers);
 }