version: '3' services: grafana: image: grafana/grafana:9.2.0 hostname: grafana depends_on: - graphite links: - graphite ports: - "3000:3000" environment: - GF_SECURITY_ADMIN_PASSWORD=hdeAga76VG6ga7plZ1 - GF_SECURITY_ADMIN_USER=sitespeedio - GF_AUTH_ANONYMOUS_ENABLED=true - GF_USERS_ALLOW_SIGN_UP=false - GF_USERS_ALLOW_ORG_CREATE=false - GF_INSTALL_PLUGINS=grafana-piechart-panel volumes: - grafana:/var/lib/grafana restart: always graphite: image: sitespeedio/graphite:1.1.10-3 hostname: graphite ports: - "2003:2003" - "8080:80" restart: always volumes: # In production you should configure/map these to your container # Make sure whisper and graphite.db/grafana.db lives outside your containerr # https://www.sitespeed.io/documentation/sitespeed.io/graphite/#graphite-for-production-important - whisper:/opt/graphite/storage/whisper # Download an empty graphite.db from https://github.com/sitespeedio/sitespeed.io/tree/main/docker/graphite # - /absolute/path/to/graphite/graphite.db:/opt/graphite/storage/graphite.db # # And put the configuration files on your server, configure them as you need # Download from https://github.com/sitespeedio/docker-graphite-statsd/tree/main/conf/graphite # - /absolute/path/to/graphite/conf/storage-schemas.conf:/opt/graphite/conf/storage-schemas.conf # - /absolute/path/to/graphite/conf/storage-aggregation.conf:/opt/graphite/conf/storage-aggregation.conf # - /absolute/path/to/graphite/conf/carbon.conf:/opt/graphite/conf/carbon.conf grafana-setup: image: sitespeedio/grafana-bootstrap:24.5.0 links: - grafana environment: - GF_PASSWORD=hdeAga76VG6ga7plZ1 - GF_USER=sitespeedio volumes: grafana: whisper: