We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When using an .env file with multiple args, such as:
.env
A=aaaa B=bbbb
that's later used in docker-compose.yml:
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 ...
docker-compose up ...
I guess the offending code is here somewhere:
https://github.com/modfin/dcr/blob/master/dcr.go#L381-L418
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When using an
.env
file with multiple args, such as:that's later used in
docker-compose.yml
:the args read by dcr gets concatenated and will result in something like:
This behavior is not present when running normal
docker-compose up ...
I guess the offending code is here somewhere:
https://github.com/modfin/dcr/blob/master/dcr.go#L381-L418
The text was updated successfully, but these errors were encountered: