This is a mixin for Porter that provides the Docker Compose (docker-compose) CLI.
This will install the latest mixin release via the Porter CLI.
porter mixin install docker-compose
To use this mixin in a bundle, declare it like so:
mixins:
- docker-composeTo override the default docker-compose version, you can declare the mixin such as:
mixins:
- docker-compose:
clientVersion: 1.26.0This docker-compose mixin only adds the docker-compose CLI. However, the
docker CLI will also most likely be required by bundles using Docker Compose.
To add docker, you'll need to add the Docker mixin under the mixins
section as well.
mixins:
- dockerFor further details and configuration options for the Docker mixin, see the repo's README.
To declare that Docker access is required to run the bundle, as will probably
always be the case when using this mixin, we can add docker (the extension name)
under the required section in the manifest, like so:
required:
- dockerAdditional configuration for this extension is currently limited to whether or not the container should run as privileged or not:
required:
- docker:
privileged: falseDeclaring this extension as required is a great way to let potential users of your bundle know that Docker access is necessary to install.
See more information via the Porter documentation.
See the docker-compose CLI Command Reference for the supported commands.
docker-compose:
description: "Description of the command"
arguments:
- arg1
- arg2
flags:
FLAGNAME: FLAGVALUE
REPEATED_FLAG:
- FLAGVALUE1
- FLAGVALUE2
suppress-output: false
outputs:
- name: NAME
jsonPath: JSONPATH
- name: NAME
path: SOURCE_FILEPATHThe suppress-output field controls whether output from the mixin should be
prevented from printing to the console. By default this value is false, using
Porter's default behavior of hiding known sensitive values. When
suppress-output: true all output from the mixin (stderr and stdout) are hidden.
Step outputs (below) are still collected when output is suppressed. This allows you to prevent sensitive data from being exposed while still collecting it from a command and using it in your bundle.
The mixin supports jsonpath and path outputs.
The jsonPath output treats stdout like a json document and applies the expression, saving the result to the output.
outputs:
- name: NAME
jsonPath: JSONPATHFor example, if the jsonPath expression was $[*].id and the command sent the following to stdout:
[
{
"id": "1085517466897181794",
"name": "my-vm"
}
]Then the output would have the following contents:
["1085517466897181794"]The path output saves the content of the specified file path to an output.
outputs:
- name: kubeconfig
path: /root/.kube/configdocker-compose:
description: "Docker Compose Up"
arguments:
- up
- -d
flags:
timeout: 30This mixin has built-in support for common Docker Compose commands. Supported
commands can be defined within the docker-compose step and support the same
fields and options.
Arguments and flags can be set on both the docker-compose step and on the
specified sub-command. Arguments and flags set on the docker-compose step
will be applied to the docker-compose part of the command while arguments
and flags set on the sub-command will be applied to the sub-command.
You may only specify one command within a single docker-compose step. To
execute multiple commands, define multiple docker-compose steps.
docker-compose:
description: Docker Compose Pull
flags:
file: compose.yml
pull:
arguments:
- serviceA
- serviceB
flags:
ignore-pull-failures:
policy: missingThis is equivalent to: docker-compose --file compose.yml pull --ignore-pull-failures --policy missing serviceA serviceB
docker-compose:
description: Docker Compose Up
up:
arguments:
- serviceA
- serviceB
flags:
detach:
timeout: 30This is equivalent to: docker-compose up --detach --timeout 30 serviceA serviceB
docker-compose:
description: Docker Compose Down
down:
flags:
remove-orphans:
timeout: 30This is equivalent to: docker-compose down --remove-orphans --timeout 30
See full bundle examples in the examples directory.
Use of this mixin requires opting-in to Docker host access via a Porter setting. See the Porter documentation for further details.
Here we opt-in via the CLI flag, --allow-docker-host-access:
$ porter install --allow-docker-host-access
Building bundle ===>
Copying porter runtime ===>
Copying mixins ===>
Copying mixin docker-compose ===>
Generating Dockerfile =======>
Writing Dockerfile =======>
Starting Invocation Image Build =======>
installing docker-compose...
executing install action from docker-compose (bundle instance: docker-compose)
Docker docker-compose up
app_web_1 is up-to-date
app_redis_1 is up-to-date
execution completed successfully!