for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Dock\Installer\System\Linux;
use Dock\Installer\SoftwareInstallTask;
class Docker extends SoftwareInstallTask
{
/**
* {@inheritdoc}
*/
public function getName()
return 'docker';
}
protected function getVersionCommand()
return 'docker --version';
protected function getInstallCommand()
return 'curl -sSL https://get.docker.com/ | sh';