ruddle/examples/service/ruddle.yaml
2022-08-22 08:46:35 +02:00

24 lines
694 B
YAML

# Only 1 inheritance allowed (no multiple inheritance)
# The script will inherit all base settings, such as version, plugins and so on.
basedOn: ../base/ruddle.base.yaml # can also be git repo with ruddle.yaml in root
# inputs are set to fill out details of scripts provided from children
input:
org:
name: "some-name"
squad: "some-squad"
domain: "some-domain"
vars:
- when: dev
vars:
SOME_OTHER_VARIABLE: SOME_OTHER_VALUE
actions:
depends_on:
- ruddle/docker-compose@latest
scripts:
local_up:
description: |
will run local environment
actions:
- docker-compose: "-f docker/docker-compose up --build"