Docker compose extension for Robo task runner
Run docker compose commands from the Robo task runner.
First, you’ll need to download the robo docker compose library using composer:
composer require --dev droath/robo-docker-compose
<?php
use \Droath\RoboDockerCompose\Task\loadTasks;
// Command equivalent: `docker-composer up -d -remove-orphans`
$this->taskDockerComposeUp()
->detachedMode()
->removeOrphans()
->run();
// Command equivalent: `docker-composer down`
$this->taskDockerComposeDown()
->run();
The following commands have been implemented:
I’ll be adding the rests of the docker-compose commands shortly. Or if you want
to create a PR with additional commands that would be much appreciated.