Do you have a proposal for changing the production environment variables? I think I'd be keen to instead have another settings file, possibly something like docker.py and then use that as part of the docker config which could simply the naming schemes.
Originally posted by @AdmiralGT in #186 (comment)
generally with docker files you want to emulate whats in production as closely as possible, I also dislike config files in general as its just another thing thats different to prod,
I think itd be pretty simple to just change the production config slightly and change the env vars, for exmaple atm in prod it does some fancy string manipulation to get the postgres user and stuff like that where that info could just be capture in the env variable
Do you have a proposal for changing the production environment variables? I think I'd be keen to instead have another settings file, possibly something like
docker.pyand then use that as part of the docker config which could simply the naming schemes.Originally posted by @AdmiralGT in #186 (comment)
generally with docker files you want to emulate whats in production as closely as possible, I also dislike config files in general as its just another thing thats different to prod,
I think itd be pretty simple to just change the production config slightly and change the env vars, for exmaple atm in prod it does some fancy string manipulation to get the postgres user and stuff like that where that info could just be capture in the env variable