https://github.com/statsd/statsd
Raw File
Tip revision: 7c07eec4e7cebbd376d8313b230cea96c6571423 authored by Elliot Blackburn on 22 August 2023, 12:52:19 UTC
Correct container image tagging
Tip revision: 7c07eec
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