task(Up::class, $pathToDockerCompose); } /** * Docker compose ps task. */ protected function taskDockerComposePs($pathToDockerCompose = null) { return $this->task(Ps::class, $pathToDockerCompose); } /** * Docker compose down task. */ protected function taskDockerComposeDown($pathToDockerCompose = null) { return $this->task(Down::class, $pathToDockerCompose); } /** * Docker compose pause task. */ protected function taskDockerComposePause($pathToDockerCompose = null) { 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. */ protected function taskDockerComposeStart($pathToDockerCompose = null) { return $this->task(Start::class, $pathToDockerCompose); } /** * Docker compose restart task. */ protected function taskDockerComposeRestart($pathToDockerCompose = null) { return $this->task(Restart::class, $pathToDockerCompose); } /** * Docker compose execute task. */ protected function taskDockerComposeExecute($pathToDockerCompose = null) { return $this->task(Execute::class, $pathToDockerCompose); } }