github.com/pyroscope-io/pyroscope@v0.37.3-0.20230725203016-5f6947968bd0/examples/ruby/rideshare/docker-compose.yml (about)

     1  version: '3.9'
     2  services:
     3    us-east:
     4      environment:
     5        - REGION=us-east
     6      build:
     7        context: .
     8  
     9    eu-north:
    10      environment:
    11        - REGION=eu-north
    12      build:
    13        context: .
    14  
    15    ap-south:
    16      environment:
    17        - REGION=ap-south
    18      build:
    19        context: .
    20  
    21    pyroscope:
    22      image: pyroscope/pyroscope
    23      environment:
    24        - PYROSCOPE_LOG_LEVEL=debug
    25      ports:
    26        - '4040:4040'
    27      command:
    28        - 'server'
    29  
    30    load-generator:
    31      build:
    32        context: .
    33        dockerfile: Dockerfile.load-generator