docker-compose.postgres.yml 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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. tb-core1:
  29. env_file:
  30. - tb-node.postgres.env
  31. depends_on:
  32. - postgres
  33. tb-core2:
  34. env_file:
  35. - tb-node.postgres.env
  36. depends_on:
  37. - postgres
  38. tb-rule-engine1:
  39. env_file:
  40. - tb-node.postgres.env
  41. depends_on:
  42. - postgres
  43. tb-rule-engine2:
  44. env_file:
  45. - tb-node.postgres.env
  46. depends_on:
  47. - postgres