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
It would be great to add the ability to use a toml file instead of a regular .env, because toml provides much more functionality than a regular .env.
e.g.
services: web: image: ${toml.services.images} ports: ${toml.services.ports} env_file: - ${toml.services.env} redis: image: ${toml.services.images}
TOML example
[services] [services.web] image = "nginx" ports = { 80 = 80, 443 = 443 } env = {somevar1 = someval1, somevar2 = someval2} [services.redis] image = "redis"
The text was updated successfully, but these errors were encountered:
That's an interesting proposal, some thoughts:
toml.services.images
ports
Sorry, something went wrong.
No branches or pull requests
Description
It would be great to add the ability to use a toml file instead of a regular .env, because toml provides much more functionality than a regular .env.
e.g.
TOML example
The text was updated successfully, but these errors were encountered: