version: '3.9' services: us-east: environment: - REGION=us-east build: context: . eu-north: environment: - REGION=eu-north build: context: . ap-south: environment: - REGION=ap-south build: context: . pyroscope: container_name: pyroscope image: pyroscope/pyroscope-dev:main environment: - PYROSCOPE_LOG_LEVEL=debug ports: - '4040:4040' command: - 'server' volumes: - ./server.yml:/etc/pyroscope/server.yml load-generator: build: context: ../ dockerfile: Dockerfile.load-generator depends_on: - us-east - eu-north - ap-south