fig 513 B

12345678910111213141516171819202122232425262728
  1. # version: '3'
  2. # services:
  3. # graphite1:
  4. # build:
  5. # context: blocks/graphite1
  6. # args:
  7. # - version=master
  8. graphite1:
  9. build: blocks/graphite1
  10. ports:
  11. - "8080:80"
  12. - "2003:2003"
  13. networks:
  14. - graphite
  15. volumes:
  16. - /etc/localtime:/etc/localtime:ro
  17. - /etc/timezone:/etc/timezone:ro
  18. fake-graphite-data:
  19. image: grafana/fake-data-gen
  20. networks:
  21. - graphite
  22. environment:
  23. FD_DATASOURCE: graphite
  24. FD_PORT: 2003
  25. networks:
  26. graphite: