Example #1
0
 /**
  * Configure the command options.
  *
  * @return void
  */
 protected function configure()
 {
     parent::configure();
     $this->setName('status')->setDescription('List the Docker containers for the current project');
 }
 /**
  * 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');
 }
Example #3
0
 /**
  * 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');
 }
Example #4
0
 /**
  * Configure the command options.
  *
  * @return void
  */
 protected function configure()
 {
     parent::configure();
     $this->setName('boot')->setDescription('Starts the nginx proxy');
 }
Example #5
0
 /**
  * Configure the command options.
  *
  * @return void
  */
 protected function configure()
 {
     parent::configure();
     $this->setName('doctor')->setDescription('Check that the host system is correctly set up');
 }
Example #6
0
 /**
  * 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');
 }
Example #7
0
 /**
  * Configure the command options.
  *
  * @return void
  */
 protected function configure()
 {
     parent::configure();
     $this->setName('make')->setDescription('Install Dockstead into the current project');
 }
Example #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');
 }