docker-compose.redis-cluster.volumes.yml 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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 cluster
  19. redis-node-0:
  20. volumes:
  21. - redis-cluster-data-0:/bitnami/redis/data
  22. redis-node-1:
  23. volumes:
  24. - redis-cluster-data-1:/bitnami/redis/data
  25. redis-node-2:
  26. volumes:
  27. - redis-cluster-data-2:/bitnami/redis/data
  28. redis-node-3:
  29. volumes:
  30. - redis-cluster-data-3:/bitnami/redis/data
  31. redis-node-4:
  32. volumes:
  33. - redis-cluster-data-4:/bitnami/redis/data
  34. redis-node-5:
  35. volumes:
  36. - redis-cluster-data-5:/bitnami/redis/data
  37. volumes:
  38. redis-cluster-data-0:
  39. external:
  40. name: ${REDIS_CLUSTER_DATA_VOLUME_0}
  41. redis-cluster-data-1:
  42. external:
  43. name: ${REDIS_CLUSTER_DATA_VOLUME_1}
  44. redis-cluster-data-2:
  45. external:
  46. name: ${REDIS_CLUSTER_DATA_VOLUME_2}
  47. redis-cluster-data-3:
  48. external:
  49. name: ${REDIS_CLUSTER_DATA_VOLUME_3}
  50. redis-cluster-data-4:
  51. external:
  52. name: ${REDIS_CLUSTER_DATA_VOLUME_4}
  53. redis-cluster-data-5:
  54. external:
  55. name: ${REDIS_CLUSTER_DATA_VOLUME_5}