You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/Commands/Services/StartCommand.php
+19Lines changed: 19 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -38,6 +38,7 @@ protected function configure()
38
38
->setAliases(['start'])
39
39
->setDescription('Starts the specified service(s)')
40
40
->addArgument('service', InputArgument::REQUIRED|InputArgument::IS_ARRAY, 'The services to start, or "all"; see <info>services:list</info> for available services')
41
+
->addOption('install', 'i', InputOption::VALUE_NONE, 'Install missing dependencies before starting them, if they are not installed')
41
42
->addOption('rebuild', 'b', InputOption::VALUE_NONE, 'Re-build the containers before starting')
42
43
->addOption('refresh', 'r', InputOption::VALUE_NONE, 'Refresh the containers before starting; pulls all new images')
43
44
->addOption('with-deps', 'd', InputOption::VALUE_NONE, 'Start all dependencies without prompting for confirmation')
@@ -73,6 +74,24 @@ private function startService(string $service): void
0 commit comments