How to add config when using docker-compose? #453
-
|
Hello, can you please tell me where I need to mount config.yaml so that the application will use it at startup? hello-world-proxy: Not worked for me :( I get an error when starting: [error] you have not specified the listening interface |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
Not sure if this is still relevant, but in your case, you need to specify PROXY_CONFIG_FILE environment variable and change a bit the way you mount you config file volumes:
- ./config/gogatekeeper/:/opt/gatekeeper/
environment:
- PROXY_CONFIG_FILE=/opt/gatekeeper/config.yaml |
Beta Was this translation helpful? Give feedback.
Not sure if this is still relevant, but in your case, you need to specify PROXY_CONFIG_FILE environment variable and change a bit the way you mount you config file