services: # Jaeger jaeger-all-in-one: image: docker.io/jaegertracing/all-in-one:latest restart: always environment: COLLECTOR_OTLP_ENABLED: true ports: - "16686:16686" - "14268" - "14250" - "43170:4317" # Zipkin zipkin-all-in-one: image: docker.io/openzipkin/zipkin:latest restart: always ports: - "9411:9411" # Collector otel-collector: image: docker.io/otel/opentelemetry-collector:latest restart: always command: ["--config=/etc/otel-collector-config.yaml", "${OTELCOL_ARGS}"] volumes: - ./otel-collector-config.yaml:/etc/otel-collector-config.yaml ports: - "1888:1888" # pprof extension - "8888:8888" # Prometheus metrics exposed by the collector - "8889:8889" # Prometheus exporter metrics - "13133:13133" # health_check extension - "4317:4317" # OTLP gRPC receiver - "4318:4318" - "55679:55679" # zpages extension depends_on: - jaeger-all-in-one - zipkin-all-in-one