Add docker compose pull command to the project.

This commit is contained in:
Travis Tomka
2018-04-14 13:36:15 -06:00
parent 0bd195e5a9
commit 2800a55776
3 changed files with 75 additions and 1 deletions

View File

@@ -31,6 +31,14 @@ trait loadTasks
return $this->task(Pause::class, $pathToDockerCompose);
}
/**
* Docker compose pull task.
*/
protected function taskDockerComposePull($pathToDockerCompose = null)
{
return $this->task(Pull::class, $pathToDockerCompose);
}
/**
* Docker compose start task.
*/
@@ -54,5 +62,4 @@ trait loadTasks
{
return $this->task(Execute::class, $pathToDockerCompose);
}
}