docker-compose.yml 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  1. # Licensed to the Apache Software Foundation (ASF) under one
  2. # or more contributor license agreements. See the NOTICE file
  3. # distributed with this work for additional information
  4. # regarding copyright ownership. The ASF licenses this file
  5. # to you under the Apache License, Version 2.0 (the
  6. # "License"); you may not use this file except in compliance
  7. # with the License. You may obtain a copy of the License at
  8. #
  9. # http://www.apache.org/licenses/LICENSE-2.0
  10. #
  11. # Unless required by applicable law or agreed to in writing, software
  12. # distributed under the License is distributed on an "AS IS" BASIS,
  13. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. # See the License for the specific language governing permissions and
  15. # limitations under the License.
  16. version: "3.8"
  17. services:
  18. dolphinscheduler-postgresql:
  19. image: bitnami/postgresql:15.2.0
  20. ports:
  21. - "5432:5432"
  22. profiles: ["all", "schema"]
  23. environment:
  24. POSTGRESQL_USERNAME: root
  25. POSTGRESQL_PASSWORD: root
  26. POSTGRESQL_DATABASE: dolphinscheduler
  27. volumes:
  28. - dolphinscheduler-postgresql:/bitnami/postgresql
  29. healthcheck:
  30. test: ["CMD", "bash", "-c", "cat < /dev/null > /dev/tcp/127.0.0.1/5432"]
  31. interval: 5s
  32. timeout: 60s
  33. retries: 120
  34. networks:
  35. - dolphinscheduler
  36. dolphinscheduler-zookeeper:
  37. image: bitnami/zookeeper:3.7.1
  38. profiles: ["all"]
  39. environment:
  40. ALLOW_ANONYMOUS_LOGIN: "yes"
  41. ZOO_4LW_COMMANDS_WHITELIST: srvr,ruok,wchs,cons
  42. volumes:
  43. - dolphinscheduler-zookeeper:/bitnami/zookeeper
  44. healthcheck:
  45. test: ["CMD", "bash", "-c", "cat < /dev/null > /dev/tcp/127.0.0.1/2181"]
  46. interval: 5s
  47. timeout: 60s
  48. retries: 120
  49. networks:
  50. - dolphinscheduler
  51. dolphinscheduler-schema-initializer:
  52. image: ${HUB}/dolphinscheduler-tools:${TAG}
  53. env_file: .env
  54. profiles: ["schema"]
  55. command: [ tools/bin/upgrade-schema.sh ]
  56. depends_on:
  57. dolphinscheduler-postgresql:
  58. condition: service_healthy
  59. volumes:
  60. - dolphinscheduler-logs:/opt/dolphinscheduler/logs
  61. - dolphinscheduler-shared-local:/opt/soft
  62. - dolphinscheduler-resource-local:/dolphinscheduler
  63. networks:
  64. - dolphinscheduler
  65. dolphinscheduler-api:
  66. image: ${HUB}/dolphinscheduler-api:${TAG}
  67. ports:
  68. - "12345:12345"
  69. - "25333:25333"
  70. profiles: ["all"]
  71. env_file: .env
  72. healthcheck:
  73. test: [ "CMD", "curl", "http://localhost:12345/dolphinscheduler/actuator/health" ]
  74. interval: 30s
  75. timeout: 5s
  76. retries: 3
  77. depends_on:
  78. dolphinscheduler-zookeeper:
  79. condition: service_healthy
  80. volumes:
  81. - dolphinscheduler-logs:/opt/dolphinscheduler/logs
  82. - dolphinscheduler-shared-local:/opt/soft
  83. - dolphinscheduler-resource-local:/dolphinscheduler
  84. networks:
  85. - dolphinscheduler
  86. dolphinscheduler-alert:
  87. image: ${HUB}/dolphinscheduler-alert-server:${TAG}
  88. profiles: ["all"]
  89. env_file: .env
  90. healthcheck:
  91. test: [ "CMD", "curl", "http://localhost:50053/actuator/health" ]
  92. interval: 30s
  93. timeout: 5s
  94. retries: 3
  95. depends_on:
  96. dolphinscheduler-zookeeper:
  97. condition: service_healthy
  98. volumes:
  99. - dolphinscheduler-logs:/opt/dolphinscheduler/logs
  100. networks:
  101. - dolphinscheduler
  102. dolphinscheduler-master:
  103. image: ${HUB}/dolphinscheduler-master:${TAG}
  104. profiles: ["all"]
  105. env_file: .env
  106. healthcheck:
  107. test: [ "CMD", "curl", "http://localhost:5679/actuator/health" ]
  108. interval: 30s
  109. timeout: 5s
  110. retries: 3
  111. depends_on:
  112. dolphinscheduler-zookeeper:
  113. condition: service_healthy
  114. volumes:
  115. - dolphinscheduler-logs:/opt/dolphinscheduler/logs
  116. - dolphinscheduler-shared-local:/opt/soft
  117. networks:
  118. - dolphinscheduler
  119. dolphinscheduler-worker:
  120. image: ${HUB}/dolphinscheduler-worker:${TAG}
  121. profiles: ["all"]
  122. env_file: .env
  123. healthcheck:
  124. test: [ "CMD", "curl", "http://localhost:1235/actuator/health" ]
  125. interval: 30s
  126. timeout: 5s
  127. retries: 3
  128. depends_on:
  129. dolphinscheduler-zookeeper:
  130. condition: service_healthy
  131. volumes:
  132. - dolphinscheduler-worker-data:/tmp/dolphinscheduler
  133. - dolphinscheduler-logs:/opt/dolphinscheduler/logs
  134. - dolphinscheduler-shared-local:/opt/soft
  135. - dolphinscheduler-resource-local:/dolphinscheduler
  136. networks:
  137. - dolphinscheduler
  138. networks:
  139. dolphinscheduler:
  140. driver: bridge
  141. volumes:
  142. dolphinscheduler-postgresql:
  143. dolphinscheduler-zookeeper:
  144. dolphinscheduler-worker-data:
  145. dolphinscheduler-logs:
  146. dolphinscheduler-shared-local:
  147. dolphinscheduler-resource-local: