-
-
Notifications
You must be signed in to change notification settings - Fork 3k
Closed
Description
A common use case when running an application inside Docker is passing configuration parameters via Environment variables.
We could introduce support for reading the values of configuration parameters from environment variables in settings.json, taking inspiration from ElasticSearch's environment variable substitution:
Environment variables referenced with the ${...} notation within the configuration file will be replaced with the value of the environment variable, for instance:
node.name: ${HOSTNAME} network.host: ${ES_NETWORK_HOST}