Add docker-compose exec command.

This commit is contained in:
Travis Tomka
2018-02-25 18:09:06 -07:00
parent c2242c4b93
commit 0d799fca6c
5 changed files with 167 additions and 3 deletions

View File

@@ -46,4 +46,13 @@ trait loadTasks
{
return $this->task(Restart::class, $pathToDockerCompose);
}
/**
* Docker compose execute task.
*/
protected function taskDockerComposeExecute($pathToDockerCompose = null)
{
return $this->task(Execute::class, $pathToDockerCompose);
}
}