Revision 0c241dbbb3d19e13f61a4626df190fc9c0e1c27a authored by Elliot Blackburn on 25 February 2020, 19:00:54 UTC, committed by Elliot Blackburn on 25 February 2020, 19:00:54 UTC
1 parent 9c4a66a
Raw File
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