Add docker-compose restart command.

This commit is contained in:
Travis Tomka
2017-03-30 19:58:52 -06:00
parent 4697d956fa
commit ce1360c733
2 changed files with 41 additions and 0 deletions

View File

@@ -22,4 +22,12 @@ trait loadTasks
{
return $this->task(Down::class, $pathToDockerCompose);
}
/**
* Docker compose restart task.
*/
protected function taskDockerComposeRestart($pathToDockerCompose = null)
{
return $this->task(Restart::class, $pathToDockerCompose);
}
}