-
Notifications
You must be signed in to change notification settings - Fork 2
Open
Description
When using an .env file with multiple args, such as:
A=aaaa
B=bbbb
that's later used in docker-compose.yml:
services:
myservice:
environment:
- A=${A}
- B=${B}
the args read by dcr gets concatenated and will result in something like:
$ echo $A
aaaa
B=bbbb
This behavior is not present when running normal docker-compose up ...
I guess the offending code is here somewhere:
Metadata
Metadata
Assignees
Labels
No labels