https://github.com/statsd/statsd
Revision ff308f672f598ed22d786e63206d785ed14bb0fc authored by Elliot Blackburn on 12 February 2019, 17:59:33 UTC, committed by Elliot Blackburn on 17 February 2019, 22:23:05 UTC
1 parent cd4ab9f
Raw File
Tip revision: ff308f672f598ed22d786e63206d785ed14bb0fc authored by Elliot Blackburn on 12 February 2019, 17:59:33 UTC
begin testing on node lts and up
Tip revision: ff308f6
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