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