From fe43631958b87b656f7c0a281f3235d1ea1882a7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juraci=20Paix=C3=A3o=20Kr=C3=B6hling?= Date: Mon, 23 Jul 2018 18:45:19 +0200 Subject: [PATCH] Fix HotROD Docker command (#949) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Juraci Paixão Kröhling --- examples/hotrod/README.md | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/examples/hotrod/README.md b/examples/hotrod/README.md index 66f22d29836..05a18eceab0 100644 --- a/examples/hotrod/README.md +++ b/examples/hotrod/README.md @@ -24,7 +24,12 @@ to view the traces. A tutorial / walkthough is available: An all-in-one Jaeger backend is packaged as a Docker container with in-memory storage. ```bash -docker run -d --name jaeger -p6831:6831/udp -p16686:16686 jaegertracing/all-in-one:latest +docker run \ + --rm \ + --name jaeger \ + -p6831:6831/udp \ + -p16686:16686 \ + jaegertracing/all-in-one:1.6 ``` Jaeger UI can be accessed at http://localhost:16686. @@ -41,7 +46,13 @@ go run ./main.go all ### Run HotROD from docker ```bash -docker run --rm -it --link jaeger -p8080-8083:8080-8083 jaegertracing/example-hotrod:latest --jaeger-agent.host-port=jaeger:6831 +docker run \ + --rm \ + --link jaeger \ + -p8080-8083:8080-8083 \ + jaegertracing/example-hotrod:1.6 \ + all \ + --jaeger-agent.host-port=jaeger:6831 ``` Then open http://127.0.0.1:8080