How to set env variables in Docker reliably
I want to deploy my backend (or really all my programs) using Kubernetes / CircleCI and now im facing the issue of wanting to have my credentials and such set as environment variables for my Image on deploy
My current structure is something like: program starts -> generates config files -> reads config files
Now with the config files being waited for to get filled in it kinda destroys the point of automatic deployment, and me using SQLite as database doesnt help either considering it would be gone each time
My current structure is something like: program starts -> generates config files -> reads config files
Now with the config files being waited for to get filled in it kinda destroys the point of automatic deployment, and me using SQLite as database doesnt help either considering it would be gone each time

