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

     1  version: '3.9'
     2  services:
     3    us-east:
     4      environment:
     5        - REGION=us-east
     6      build:
     7        context: ../ruby/rideshare
     8  
     9    eu-north:
    10      environment:
    11        - REGION=eu-north
    12      build:
    13        context: ../ruby/rideshare
    14  
    15    ap-south:
    16      environment:
    17        - REGION=ap-south
    18      build:
    19        context: ../ruby/rideshare
    20  
    21    pyroscope:
    22      image: pyroscope/pyroscope:latest
    23      environment:
    24        - PYROSCOPE_LOG_LEVEL=debug
    25      entrypoint:
    26      - pyroscope
    27      - server
    28      - --config
    29      - /etc/pyroscope/server.yaml
    30      volumes:
    31        - ./pyroscope:/etc/pyroscope
    32  
    33  
    34    docker-host:
    35      image: "qoomon/docker-host"
    36      cap_add:
    37        - "NET_ADMIN"
    38        - "NET_RAW"
    39  
    40    load-generator:
    41      build:
    42        context: ../ruby/rideshare
    43        dockerfile: Dockerfile.load-generator
    44