taskDockerPull('wordpress') * ->run(); * * ?> * ``` * */ class Pull extends Base { /** * @param string $image */ public function __construct($image) { $this->command = "docker pull $image "; } /** * {@inheritdoc} */ public function getCommand() { return $this->command . ' ' . $this->arguments; } }