https://github.com/statsd/statsd
Raw File
Tip revision: f95f4a8162d2e94aa0a67fcdffe716e75575b478 authored by dependabot[bot] on 25 August 2020, 13:16:18 UTC
Bump handlebars from 4.1.2 to 4.7.6
Tip revision: f95f4a8
docker-compose.yml
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