- As we Dockerize the keyserver, we need to make it possible to define config via environmental variables.
- In most of those cases, we can define the entire JSON file as an environmental variable.
- But for the case of the DB config, we'd like to be able to share a config style with the mysql Docker image, which uses separate environmental variables for each key
- So we're going to special-case DB config here
- The rest of the configs will be handled through importJSON in a following diff
Depends on D4025