This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '3.8' | |
services: | |
jaeger: | |
image: jaegertracing/all-in-one:1.51 # At least 1.35 if you want to have enabled collector | |
container_name: jaeger | |
environment: | |
- COLLECTOR_ZIPKIN_HOST_PORT=:9411 | |
- COLLECTOR_OTLP_ENABLED=true | |
ports: # Some ports are optional or deprecated, but we still let them be here as it's a general snippet | |
- "5775:5775/udp" # agent accept zipkin.thrift over compact thrift protocol (deprecated, used by legacy clients only) |