compose.yaml 493 B

1234567891011121314151617181920212223242526272829
  1. services:
  2. zookeeper:
  3. image: zookeeper
  4. container_name: zookeeper
  5. restart: always
  6. nimbus:
  7. image: storm
  8. container_name: nimbus
  9. command: storm nimbus
  10. depends_on:
  11. - zookeeper
  12. links:
  13. - zookeeper
  14. restart: always
  15. ports:
  16. - 6627:6627
  17. supervisor:
  18. image: storm
  19. container_name: supervisor
  20. command: storm supervisor
  21. depends_on:
  22. - nimbus
  23. - zookeeper
  24. links:
  25. - nimbus
  26. - zookeeper
  27. restart: always