You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
604 B

  1. version: '2'
  2. services:
  3. master:
  4. build: .
  5. ports:
  6. - 9333:9333
  7. command: "master"
  8. networks:
  9. default:
  10. aliases:
  11. - seaweed_master
  12. volume:
  13. build: .
  14. ports:
  15. - 8080:8080
  16. command: 'volume -max=5 -mserver="master:9333" -port=8080'
  17. depends_on:
  18. - master
  19. networks:
  20. default:
  21. aliases:
  22. - seaweed_volume
  23. filer:
  24. build: .
  25. ports:
  26. - 8888:8888
  27. command: 'filer -master="master:9333"'
  28. depends_on:
  29. - master
  30. - volume
  31. networks:
  32. default:
  33. aliases:
  34. - seaweed_filer