Docker-compose Configuration

Environment variables

There are several services in the docker-compose.yml file, you can tune the configuration via environment variables. For instance, if you need to configure master, locate the env section of this service and add the desired environment variables:

...
master:
  ...
  env:
  - MY_VARIABLE=my-value
...