Exemple #1
0
 public function __construct($name)
 {
     parent::__construct('build');
     $this->option('-t', $name);
 }
Exemple #2
0
 public function __construct($image, $name)
 {
     parent::__construct('create');
     $this->arg($image);
     $this->option('--name', $name);
 }
Exemple #3
0
 public function __construct($image)
 {
     parent::__construct('run');
     $this->arg($image);
 }