Replies: 1 comment 6 replies
-
Hey @vvuk 👋, I'm here to assist you with any bugs, questions, or contributions you have. Let's tackle this together! To provide a configuration file to the Jaeger v2 Docker container and set Here's how you can modify your Docker Compose file to include a volume that mounts your configuration file into the container: services:
jaeger:
image: docker-release.repo.XXX.cz/jaegertracing/jaeger:2.0.0
container_name: jaeger
hostname: jaeger
ports: ['14268:14268', '14269:14269', '14250:14250', '4318:4318', '4317:4317', '16686:16686', '16687:16687', '16685:16685']
restart: 'unless-stopped'
environment:
SPAN_STORAGE_TYPE: 'elasticsearch'
volumes:
- '/var/opt/jaeger:/var/opt/jaeger'
- './jaeger-config.yaml:/etc/jaeger/jaeger-config.yaml' # Mount your config file Ensure that your query:
base-path: /your/base/path This setup should allow you to configure the To continue talking to Dosu, mention @dosu. Help Dosu learn! Give it feedback: Great Response | Irrelevant Answer | Incorrect Sources | Too Verbose | Hallucination | Other |
Beta Was this translation helpful? Give feedback.
-
I could just be missing it, but I can't find anywhere in the documentation about how to actually provide a configuration file to the jaeger v2 docker container. (The docs don't even seem to give information where the config file lives or is passed in.)
This is me trying to set QUERY_BASE_PATH (which doesn't seem to work via env var any more?). Any suggestions?
Beta Was this translation helpful? Give feedback.
All reactions