Ejemplo n.º 1
0
 /**
  * {@inheritdoc}
  */
 protected function execute(InputInterface $input, OutputInterface $output)
 {
     if ($this->machine->isRunning()) {
         $this->machine->stop();
     }
     $this->machine->start();
 }
Ejemplo n.º 2
0
 /**
  * {@inheritdoc}
  */
 public function run()
 {
     try {
         $this->machine->start();
     } catch (MachineException $e) {
         // Ignore the problem as if the machine is not running, we
         // will run the installer.
     }
     if (!$this->machine->isRunning()) {
         $this->dockerInstaller->run();
     }
 }
Ejemplo n.º 3
0
 private function restartMachine()
 {
     if ($this->machine->isRunning()) {
         $this->machine->stop();
     }
     $this->machine->start();
 }