nanobox
nanobox copied to clipboard
Feature request: imports/includes in boxfile.yml
trafficstars
It would be convenient to have reusable yaml files to include in our boxfile.yml. Preferably even separated per alias (local, dry-run, prod, ...) and allowing online files (e.g. from GitHub repositories) so they can be kept in source control.
An example:
imports:
all:
- https://raw.githubusercontent.com/my-user/my-rep/master/symfony.yml
local:
- https://raw.githubusercontent.com/my-user/my-rep/master/mailcatcher.yml
run.config:
engine: php
engine.config:
runtime: php-7.1
webserver: nginx
document_root: web
...
+1 - our use case is to keep all of our cron jobs in a separate yaml file to keep potential issues out of the main boxfile, when adding new crons.