This should make it easier to use multiple additional compose files, because now you just need to uncomment the relevant COMPOSE_FILE lines, instead of having to manually write out which combination you want in a single line.
This should make it easier to use multiple additional compose files, because now you just need to uncomment the relevant COMPOSE_FILE lines, instead of having to manually write out which combination you want in a single line.
It's missing initialization of the COMPOSE_FILE variable (see inline comment), otherwise lgtm
(maybe also move the comments and cosmetic changes to their own commit)
cheers <3
Hey,
It's missing initialization of the `COMPOSE_FILE` variable (see inline comment), otherwise lgtm
(maybe also move the comments and cosmetic changes to their own commit)
cheers <3
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.
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
This should make it easier to use multiple additional compose files, because now you just need to uncomment the relevant COMPOSE_FILE lines, instead of having to manually write out which combination you want in a single line.
COMPOSE_FILE=$COMPOSE_FILE:, to combine 'em easierHey,
It's missing initialization of the
COMPOSE_FILEvariable (see inline comment), otherwise lgtm(maybe also move the comments and cosmetic changes to their own commit)
cheers <3
@@ -11,0 +13,4 @@####################################################################### Host-mode networking#COMPOSE_FILE="$COMPOSE_FILE:compose.host.yml"I see no earlier reference to
COMPOSE_FILE, I believe it should be set prior to using it, like so:abra sets the environment using the shell, so that environment variable would not be initialized otherwise.
Fixed, thank you! 🙏