docker-compose.yml 627 B

1234567891011121314151617181920212223
  1. version: '3.3'
  2. services:
  3. agent_parent:
  4. image: debian_10_dev
  5. command: /usr/sbin/netdata -D
  6. ports:
  7. - 20000:19999
  8. volumes:
  9. - ./parent_stream.conf:/etc/netdata/stream.conf:ro
  10. agent_child1:
  11. image: debian_9_dev
  12. command: /usr/sbin/netdata -D
  13. #ports: Removed to allow scaling
  14. #- 20001:19999
  15. volumes:
  16. - ./child_stream.conf:/etc/netdata/stream.conf:ro
  17. agent_child2:
  18. image: fedora_30_dev
  19. command: /usr/sbin/netdata -D
  20. #ports: Removed to allow scaling
  21. #- 20002:19999
  22. volumes:
  23. - ./child_stream.conf:/etc/netdata/stream.conf:ro