/** * 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'); }
/** * 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'); }
/** * Configure the command options. * * @return void */ protected function configure() { parent::configure(); $this->setName('boot')->setDescription('Starts the nginx proxy'); }
/** * Configure the command options. * * @return void */ protected function configure() { parent::configure(); $this->setName('doctor')->setDescription('Check that the host system is correctly set up'); }
/** * 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'); }
/** * Configure the command options. * * @return void */ protected function configure() { parent::configure(); $this->setName('make')->setDescription('Install Dockstead into the current project'); }
/** * Configure the command options. * * @return void */ protected function configure() { parent::configure(); $this->setName('boot')->setDescription('Check that the Nginx proxy container is running'); }