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

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