Skip to content

Commit 5e857bc

Browse files
yurishkuroamol-verma-allen
authored andcommitted
Upgrade reverse-proxy example to jaeger-v2 (jaegertracing#7076)
## Which problem is this PR solving? - Resolves of jaegertracing#7074 Signed-off-by: Yuri Shkuro <[email protected]>
1 parent 5ad0778 commit 5e857bc

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

examples/reverse-proxy/docker-compose.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
11
services:
22
jaeger:
3-
image: jaegertracing/all-in-one:latest
3+
image: jaegertracing/jaeger:${JAEGER_VERSION:-2.5.0}
44
ports:
55
- "16686:16686" # Jaeger UI
66
- "4317:4317" # Collector, OpenTelemetry gRPC
77
- "4318:4318" # Collector, OpenTelemetry gRPC
8-
environment:
9-
# This tells Jaeger that it should run the UI with a given prefix.
10-
QUERY_BASE_PATH: /jaeger/prefix
8+
# We are using the build-in all-in-one configuration to avoid having
9+
# to provide an external configuration file for Jaeger. We use the
10+
# `--set` flag to override the default configuration of the `jaeger_query`
11+
# extension to tell Jaeger that it should run the UI with a given prefix.
12+
command: "--set extensions.jaeger_query.base_path=/jaeger/prefix"
1113
networks:
1214
- proxy-net
1315

0 commit comments

Comments
 (0)