COMPOSE_FILE=$COMPOSE_FILE:`, to combine 'em easier #27

Merged
3wordchant merged 3 commits from rejig-compose-vars into master 2021-08-07 17:55:06 +00:00
1 changed files with 4 additions and 0 deletions
Showing only changes of commit baba7ff87d - Show all commits

View File

@ -8,6 +8,10 @@ LETS_ENCRYPT_EMAIL=certs@example.com
# WARN, INFO etc.
LOG_LEVEL=WARN
# This is here so later lines can extend the definition; you likely don't wanna
# edit
COMPOSE_FILE="compose.yml"
#####################################################################
# General settings #
mirsal marked this conversation as resolved
Review

I see no earlier reference to COMPOSE_FILE, I believe it should be set prior to using it, like so:

COMPOSE_FILE=compose.yml

abra sets the environment using the shell, so that environment variable would not be initialized otherwise.

I see no earlier reference to `COMPOSE_FILE`, I believe it should be set prior to using it, like so: ``` COMPOSE_FILE=compose.yml ``` abra sets the environment using the shell, so that environment variable would not be initialized otherwise.
#####################################################################