docker-compose.redis.yml 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  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. # Redis standalone
  19. redis:
  20. restart: always
  21. image: bitnami/redis:7.0
  22. environment:
  23. # ALLOW_EMPTY_PASSWORD is recommended only for development.
  24. ALLOW_EMPTY_PASSWORD: "yes"
  25. ports:
  26. - '6379:6379'
  27. volumes:
  28. - ./tb-node/redis-data:/bitnami/redis/data
  29. # ThingsBoard setup to use redis-standalone
  30. tb-core1:
  31. env_file:
  32. - cache-redis.env
  33. depends_on:
  34. - redis
  35. tb-core2:
  36. env_file:
  37. - cache-redis.env
  38. depends_on:
  39. - redis
  40. tb-rule-engine1:
  41. env_file:
  42. - cache-redis.env
  43. depends_on:
  44. - redis
  45. tb-rule-engine2:
  46. env_file:
  47. - cache-redis.env
  48. depends_on:
  49. - redis
  50. tb-mqtt-transport1:
  51. env_file:
  52. - cache-redis.env
  53. depends_on:
  54. - redis
  55. tb-mqtt-transport2:
  56. env_file:
  57. - cache-redis.env
  58. depends_on:
  59. - redis
  60. tb-http-transport1:
  61. env_file:
  62. - cache-redis.env
  63. depends_on:
  64. - redis
  65. tb-http-transport2:
  66. env_file:
  67. - cache-redis.env
  68. depends_on:
  69. - redis
  70. tb-coap-transport:
  71. env_file:
  72. - cache-redis.env
  73. depends_on:
  74. - redis
  75. tb-lwm2m-transport:
  76. env_file:
  77. - cache-redis.env
  78. depends_on:
  79. - redis
  80. tb-snmp-transport:
  81. env_file:
  82. - cache-redis.env
  83. depends_on:
  84. - redis
  85. tb-vc-executor1:
  86. env_file:
  87. - cache-redis.env
  88. depends_on:
  89. - redis
  90. tb-vc-executor2:
  91. env_file:
  92. - cache-redis.env
  93. depends_on:
  94. - redis