Docker run with allways pull to fetch the latest

This commit is contained in:
Hardik Shah 2025-03-20 15:30:04 -07:00
parent ea6a4a14ce
commit 7dd7ef701e
31 changed files with 57 additions and 3 deletions

View file

@ -57,7 +57,7 @@ The `otel` sink works with any service compatible with the OpenTelemetry collect
Start a Jaeger instance with the OTLP HTTP endpoint at 4318 and the Jaeger UI at 16686 using the following command:
```bash
$ docker run --rm --name jaeger \
$ docker run --pull always --rm --name jaeger \
-p 16686:16686 -p 4318:4318 \
jaegertracing/jaeger:2.1.0
```