Example #1
0
 /**
  * Run a build (it's suppose the image exist in docker
  *
  * @param Job $build Build to run
  * @param string|array $command Command to use when run the build (null, by default, will use the command registered to the image)
  *
  * @return integer The exit code of the command run inside (0 = success, otherwise it has failed)
  */
 public function run(Job $build, $command = null)
 {
     $image = $this->docker->getImageManager()->find($build->getRepository(), $build->getTag());
     $config = array('HostConfig' => array('Links' => array()));
     foreach ($build->getServices() as $service) {
         if ($service->getContainer()) {
             $config['HostConfig']['Links'][] = sprintf('%s:%s', $service->getContainer()->getRuntimeInformations()['Name'], $service->getName());
         }
     }
     $container = new DockerContainer($config);
     if (is_string($command)) {
         $command = array('/bin/bash', '-c', $command);
     }
     if (is_array($command)) {
         $container->setCmd($command);
     }
     $container->setImage($image);
     $this->docker->getContainerManager()->run($container, $this->logger->getRunCallback(), array(), false, $this->timeout);
     return $container->getExitCode();
 }