diff options
author | Malfurious <m@lfurio.us> | 2023-08-18 12:40:45 -0400 |
---|---|---|
committer | Malfurious <m@lfurio.us> | 2023-08-18 13:45:53 -0400 |
commit | d5c380f477f2913effd632cf58aff287062bf593 (patch) | |
tree | 1d23688844df4e4c71a7ce74b1ae3bb79b7a0ba6 /acid/config.sh | |
parent | 6d503fa18f0f68c893d45fea2dc018f78c1ab02b (diff) | |
download | cychedelic-d5c380f477f2913effd632cf58aff287062bf593.tar.gz cychedelic-d5c380f477f2913effd632cf58aff287062bf593.zip |
acid: Make docker compose YML file configurable
Facilitate deployments using alternate docker-compose.yml files, or
projects which simply use a different filename for the configuration.
This setting populates the `docker compose -f` option.
Signed-off-by: Malfurious <m@lfurio.us>
Diffstat (limited to 'acid/config.sh')
-rw-r--r-- | acid/config.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/acid/config.sh b/acid/config.sh index d3dcee6..ee6b5cc 100644 --- a/acid/config.sh +++ b/acid/config.sh @@ -26,6 +26,6 @@ CYCHE_SERVICES=( # in the list. As just mentioned, it can be named anything, but "cychedelic" # is conventional. - # <name> <url> <ref-pattern> - 'cychedelic https://your/cyche/source.git refs/remotes/origin/master' + # <name> <url> <ref-pattern> <compose-file> + 'cychedelic https://your/cyche/source.git refs/remotes/origin/master docker-compose.yml' ) |