docker-compose.rabbitmq.yml 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. #
  2. # Copyright © 2016-2022 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: '2.2'
  17. services:
  18. tb-js-executor:
  19. env_file:
  20. - queue-rabbitmq.env
  21. tb-core1:
  22. env_file:
  23. - queue-rabbitmq.env
  24. depends_on:
  25. - zookeeper
  26. - redis
  27. tb-core2:
  28. env_file:
  29. - queue-rabbitmq.env
  30. depends_on:
  31. - zookeeper
  32. - redis
  33. tb-rule-engine1:
  34. env_file:
  35. - queue-rabbitmq.env
  36. depends_on:
  37. - zookeeper
  38. - redis
  39. tb-rule-engine2:
  40. env_file:
  41. - queue-rabbitmq.env
  42. depends_on:
  43. - zookeeper
  44. - redis
  45. tb-mqtt-transport1:
  46. env_file:
  47. - queue-rabbitmq.env
  48. depends_on:
  49. - zookeeper
  50. tb-mqtt-transport2:
  51. env_file:
  52. - queue-rabbitmq.env
  53. depends_on:
  54. - zookeeper
  55. tb-http-transport1:
  56. env_file:
  57. - queue-rabbitmq.env
  58. depends_on:
  59. - zookeeper
  60. tb-http-transport2:
  61. env_file:
  62. - queue-rabbitmq.env
  63. depends_on:
  64. - zookeeper
  65. tb-coap-transport:
  66. env_file:
  67. - queue-rabbitmq.env
  68. depends_on:
  69. - zookeeper
  70. tb-lwm2m-transport:
  71. env_file:
  72. - queue-rabbitmq.env
  73. depends_on:
  74. - zookeeper
  75. tb-snmp-transport:
  76. env_file:
  77. - queue-rabbitmq.env
  78. depends_on:
  79. - zookeeper