コード例 #1
0
ファイル: StatusCommand.php プロジェクト: larabros/dockstead
 /**
  * Configure the command options.
  *
  * @return void
  */
 protected function configure()
 {
     parent::configure();
     $this->setName('status')->setDescription('List the Docker containers for the current project');
 }
コード例 #2
0
 /**
  * Configure the command options.
  *
  * @return void
  */
 protected function configure()
 {
     parent::configure();
     $this->setName('check:laravel')->setDescription('Check that the current Laravel project is correctly configured for Dockstead');
 }
コード例 #3
0
ファイル: UpCommand.php プロジェクト: larabros/dockstead
 /**
  * Configure the command options.
  *
  * @return void
  */
 protected function configure()
 {
     parent::configure();
     $this->setName('up')->setDescription('Create and start the Docker containers for the current project');
 }
コード例 #4
0
ファイル: BootCommand.php プロジェクト: larabros/dockstead
 /**
  * Configure the command options.
  *
  * @return void
  */
 protected function configure()
 {
     parent::configure();
     $this->setName('boot')->setDescription('Starts the nginx proxy');
 }
コード例 #5
0
ファイル: DoctorCommand.php プロジェクト: larabros/dockstead
 /**
  * Configure the command options.
  *
  * @return void
  */
 protected function configure()
 {
     parent::configure();
     $this->setName('doctor')->setDescription('Check that the host system is correctly set up');
 }
コード例 #6
0
ファイル: DownCommand.php プロジェクト: larabros/dockstead
 /**
  * Configure the command options.
  *
  * @return void
  */
 protected function configure()
 {
     parent::configure();
     $this->setName('down')->setDescription('Stop and remove the Docker containers for the current project');
 }
コード例 #7
0
ファイル: MakeCommand.php プロジェクト: larabros/dockstead
 /**
  * Configure the command options.
  *
  * @return void
  */
 protected function configure()
 {
     parent::configure();
     $this->setName('make')->setDescription('Install Dockstead into the current project');
 }
コード例 #8
0
 /**
  * Configure the command options.
  *
  * @return void
  */
 protected function configure()
 {
     parent::configure();
     $this->setName('boot')->setDescription('Check that the Nginx proxy container is running');
 }