https://github.com/statsd/statsd
Raw File
Tip revision: 0e20be57d4918dadf5b5fad61b5c61ef382f8860 authored by Elliot Blackburn on 22 August 2023, 12:15:32 UTC
release 0.10.2
Tip revision: 0e20be5
docker-compose.yml
version: '2'
services:
  statsd:
    build: .
    links:
    - carbon:graphite
    ports:
    - 8125:8125/udp
    - 8126:8126

  graphite-web:
    image: dockerana/graphite
    links:
    - carbon
    ports:
    - 8000:8000
    volumes_from:
    - carbon

  carbon:
    image: dockerana/carbon
    ports:
    - 2003:2003
    - 2004:2004
    - 7002:7002
    volumes:
    - /opt/graphite
back to top