docker-compose.yml 534 Bytes
version: '3.8'
services:
  jaeger:
    image: jaegertracing/all-in-one:latest
    ports:
      - '6831:6831/udp'
      - '16686:16686'
  hotrod:
    image: jaegertracing/example-hotrod:latest
    ports:
      - '8082:8080'
    command: ['all']
    environment:
      - JAEGER_AGENT_HOST=jaeger
      # Note: if your application is using Node.js Jaeger Client, you need port 6832,
      #       unless issue https://github.com/jaegertracing/jaeger/issues/1596 is resolved.
      - JAEGER_AGENT_PORT=6831
    depends_on:
      - jaeger