Questions tagged [env-file]
32 questions
0
votes
1 answer
Multiple binds mounts from external config
I am putting together some tools that need access to config spread across different locations on host machines.
For reasons beyond my control, different hosts have different mappings, so I need the bind mounts to vary.
Is is possible to externalize…

user1016765
- 2,935
- 2
- 32
- 48
0
votes
1 answer
Create .env file from a .json file
.env files are used to store environment variables in a certain project. I am looking to be able to easily programmatically modify an .env file, and in that case using JSON (a .json file) would be much easier as far as I can tell.
Say I had file…
user7898461