We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent de6ecfb commit e1bf180Copy full SHA for e1bf180
1 file changed
bin/docker-api
@@ -18,8 +18,8 @@ require_once dirname(__DIR__) . '/vendor/autoload_runtime.php';
18
19
return static function (array $context) {
20
$application = new Application('Docker API', '@package_version@');
21
- $application->add(new ListContainersCommand());
22
- $application->add(new EventsListenCommand());
+ $application->addCommand(new ListContainersCommand());
+ $application->addCommand(new EventsListenCommand());
23
$application->setDefaultCommand('docker:list-containers');
24
25
return $application;
0 commit comments