Skip to content

Commit c981904

Browse files
njg7194Parship12
authored andcommitted
docs: add Quick Start section with Docker command (jaegertracing#7945)
1 parent f72bd33 commit c981904

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

README.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,26 @@
1818

1919
💥💥💥 Jaeger v2 is out! Read the [blog post](https://medium.com/jaegertracing/jaeger-v2-released-09a6033d1b10) and [try it out](https://www.jaegertracing.io/docs/latest/getting-started/).
2020

21+
## Quick Start
22+
23+
Get Jaeger running in seconds with Docker:
24+
25+
```bash
26+
# Run Jaeger all-in-one (includes UI, collector, query, and in-memory storage)
27+
docker run --rm --name jaeger \
28+
-p 16686:16686 \
29+
-p 4317:4317 \
30+
-p 4318:4318 \
31+
jaegertracing/jaeger:latest
32+
33+
# Access the UI at http://localhost:16686
34+
# Send traces via OTLP: gRPC on port 4317, HTTP on port 4318
35+
```
36+
37+
For production deployments and more options, see the [Getting Started Guide](https://www.jaegertracing.io/docs/latest/getting-started/).
38+
39+
## Architecture
40+
2141
```mermaid
2242
graph TD
2343
SDK["OpenTelemetry SDK"] --> |HTTP or gRPC| COLLECTOR

0 commit comments

Comments
 (0)