diff --git a/docs/getting_started.md b/docs/getting_started.md index 0456744b812..38160772f66 100644 --- a/docs/getting_started.md +++ b/docs/getting_started.md @@ -7,8 +7,8 @@ This image, designed for quick local testing, launches the Jaeger UI, collector, The simplest way to start the all in one docker image is to use the pre-built image published to DockerHub (a single command line). ```bash -docker run -d -p5775:5775/udp -p6831:6831/udp -p6832:6832/udp \ - -p5778:5778 -p16686:16686 -p14268:14268 jaegertracing/all-in-one:latest +docker run -d -e COLLECTOR_ZIPKIN_HTTP_PORT=9411 -p5775:5775/udp -p6831:6831/udp -p6832:6832/udp \ + -p5778:5778 -p16686:16686 -p14268:14268 -p9411:9411 jaegertracing/all-in-one:latest ``` You can then navigate to `http://localhost:16686` to access the Jaeger UI. @@ -22,7 +22,7 @@ Port | Protocol | Component | Function 6832 | UDP | agent | accept jaeger.thrift over binary thrift protocol 5778 | HTTP | agent | serve configs 16686| HTTP | web | serve frontend -14268| HTTP | collector | accept zipkin.thrift from zipkin senders +9411 | HTTP | collector | Zipkin compatible endpoint ## Kubernetes and OpenShift