Remove docker-compose.yaml, use inline docker run for Jaeger

No need for a compose file when Jaeger is the only optional
service. A single docker run command in the README is simpler.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Adil Hafeez 2026-02-17 03:30:08 -08:00
parent d7f044559a
commit 352d60b970
No known key found for this signature in database
GPG key ID: 9B18EF7691369645
2 changed files with 2 additions and 9 deletions

View file

@ -96,7 +96,8 @@ docker logs plano 2>&1 | grep MODEL_RESOLUTION
To visualize full request traces and routing decisions, start Jaeger:
```bash
docker compose up -d
docker run -d --name jaeger -p 16686:16686 -p 4317:4317 -p 4318:4318 \
-e COLLECTOR_OTLP_ENABLED=true jaegertracing/all-in-one:latest
```
Then open [http://localhost:16686](http://localhost:16686) to see traces for each request, including which model was selected and the routing latency.

View file

@ -1,8 +0,0 @@
services:
jaeger:
build:
context: ../../shared/jaeger
ports:
- "16686:16686"
- "4317:4317"
- "4318:4318"