github.com/grafana/pyroscope@v1.18.0/examples/language-sdk-instrumentation/ruby/rideshare_rails/docker-compose.yml (about) 1 services: 2 pyroscope: 3 image: grafana/pyroscope 4 ports: 5 - 4040:4040 6 us-east: 7 ports: 8 - 5000 9 environment: 10 - REGION=us-east 11 build: 12 context: . 13 links: 14 - pyroscope 15 eu-north: 16 ports: 17 - 5000 18 environment: 19 - REGION=eu-north 20 build: 21 context: . 22 ap-south: 23 ports: 24 - 5000 25 environment: 26 - REGION=ap-south 27 build: 28 context: . 29 load-generator: 30 build: 31 context: . 32 dockerfile: Dockerfile.load-generator 33 links: 34 - us-east 35 - ap-south 36 - eu-north 37 grafana: 38 image: grafana/grafana:latest 39 environment: 40 - GF_PLUGINS_PREINSTALL_SYNC=grafana-pyroscope-app 41 - GF_AUTH_ANONYMOUS_ENABLED=true 42 - GF_AUTH_ANONYMOUS_ORG_ROLE=Admin 43 - GF_AUTH_DISABLE_LOGIN_FORM=true 44 volumes: 45 - ./grafana-provisioning:/etc/grafana/provisioning 46 ports: 47 - 3000:3000