docker-compose.hybrid.yml 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. #
  2. # Copyright © 2016-2023 The Thingsboard Authors
  3. #
  4. # Licensed under the Apache License, Version 2.0 (the "License");
  5. # you may not use this file except in compliance with the License.
  6. # You may obtain a copy of the License at
  7. #
  8. # http://www.apache.org/licenses/LICENSE-2.0
  9. #
  10. # Unless required by applicable law or agreed to in writing, software
  11. # distributed under the License is distributed on an "AS IS" BASIS,
  12. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. # See the License for the specific language governing permissions and
  14. # limitations under the License.
  15. #
  16. version: '3.0'
  17. services:
  18. postgres:
  19. restart: always
  20. image: "postgres:12"
  21. ports:
  22. - "5432"
  23. environment:
  24. POSTGRES_DB: thingsboard
  25. POSTGRES_PASSWORD: postgres
  26. volumes:
  27. - ./tb-node/postgres:/var/lib/postgresql/data
  28. cassandra:
  29. restart: always
  30. image: "cassandra:4.0.4"
  31. ports:
  32. - "9042"
  33. volumes:
  34. - ./tb-node/cassandra:/var/lib/cassandra
  35. tb-core1:
  36. env_file:
  37. - tb-node.hybrid.env
  38. depends_on:
  39. - postgres
  40. - cassandra
  41. tb-core2:
  42. env_file:
  43. - tb-node.hybrid.env
  44. depends_on:
  45. - postgres
  46. - cassandra
  47. tb-rule-engine1:
  48. env_file:
  49. - tb-node.hybrid.env
  50. depends_on:
  51. - postgres
  52. - cassandra
  53. tb-rule-engine2:
  54. env_file:
  55. - tb-node.hybrid.env
  56. depends_on:
  57. - postgres
  58. - cassandra