Add the docker-composer ps command.

This commit is contained in:
Travis Tomka
2018-04-28 12:33:19 -06:00
parent 2800a55776
commit 8ff8ed66bf
3 changed files with 68 additions and 0 deletions

View File

@@ -15,6 +15,14 @@ trait loadTasks
return $this->task(Up::class, $pathToDockerCompose);
}
/**
* Docker compose ps task.
*/
protected function taskDockerComposePs($pathToDockerCompose = null)
{
return $this->task(Ps::class, $pathToDockerCompose);
}
/**
* Docker compose down task.
*/