droath/robo-docker-compose

Docker compose for Robo Task Runner

Installs: 81 344

Dependents: 3

Suggesters: 0

Security: 0

Stars: 6

Watchers: 1

Forks: 12

Open Issues: 1

Type:robo-tasks

0.0.8 2018-05-06 19:39 UTC

This package is not auto-updated.

Last update: 2024-04-27 17:53:37 UTC


README

Run docker compose commands from the Robo task runner.

Getting Started

First, you'll need to download the robo docker compose library using composer:

composer require --dev droath/robo-docker-compose

Example

<?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();

Support

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.